Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neo4j Connector for java

Is there a connector for the Neo4J server running at localhost:7474 that I can use in java? What I am looking for is something like 'JDBC' for MySQL where I can execute queries and updates as strings rather than using an embedded database.

like image 377
damith219 Avatar asked Dec 12 '25 18:12

damith219


1 Answers

There is a JDBC driver for Neo4j. You execute Cypher queries using this driver. Cypher is to Neo4j as SQL is to RDBMS.

like image 94
Aravind Yarram Avatar answered Dec 15 '25 06:12

Aravind Yarram