damith219
damith219

Reputation: 137

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.

Upvotes: 3

Views: 929

Answers (1)

Aravind Yarram
Aravind Yarram

Reputation: 80166

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

Upvotes: 7

Related Questions