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...