1

I want to connect java with neo4j database. Usually when connecting with SQL the connection string would be like

conn = DriverManager.getConnection(
                   "jdbc:" + this.dbms + "://" +
                   this.serverName +
                   ":" + this.portNumber + "/",
                   connectionProps);

Similarly for Neo4j how do we give the connection URL and let me know if we connect with the JDBC driver itself. Please let me know.

Thanks in advance...

1 Answer 1

2

You can use the Neo4j JDBC driver to connect to your graph as well: http://www.neo4j.org/develop/tools/jdbc

I have some notes on using it here: http://thought-bytes.blogspot.in/2014/02/migrating-flavorwocky-database-using.html

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.