Reputation: 137
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
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