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.
问问题
898 次
1 回答
7
There is a JDBC driver for Neo4j. You execute Cypher queries using this driver. Cypher is to Neo4j as SQL is to RDBMS.
于 2013-08-17T16:30:35.597 回答