Connecting from Code
This section describes how to connect with the JDBC DriverManager or Neo4jDataSource interfaces.
Connecting with the DriverManager
When connecting with the DriverManager class, the CData JDBC Driver for Neo4j follows the JDBC convention: First, load the Neo4j driver class. Then, make a connection.
Load the Driver
The following step is optional per the JDBC 4.0 specification.Class.forName("cdata.jdbc.neo4j.Neo4jDriver");
Establish a Connection
Provide the connection string with the getConnection method of the static DriverManager class. Start the connection string with "jdbc:neo4j:". A typical connection string is the following:
Connection conn = DriverManager.getConnection("jdbc:neo4j:server=localhost;port=7474;user=neo4j;password=password;");Alternatively, you can prepare the connection options using a Properties object. Pass the Properties object to the DriverManager.
prop.setProperty("server","localhost"); prop.setProperty("port","7474"); prop.setProperty("user","neo4j"); prop.setProperty("password","password"); Connection conn = DriverManager.getConnection("jdbc:neo4j:",prop);
Connecting with the Neo4jDataSource Class
You can use the Neo4jDataSource class to create pooled connections, as shown in the following example. See Connection Pooling for more information.
The following example instantiates a pooled Connection object:
Neo4jDataSource ds = new Neo4jDataSource("jdbc:neo4j:UseConnectionPooling=true;server=localhost;port=7474;user=neo4j;password=password;");
Connection conn = ds.getConnection();