Skip to content

neo4j/neo4j-jdbc

Neo4j JDBC Driver

This is the manual for the official Neo4j JDBC Driver.

Warning
The Neo4j JDBC Driver is in Early Access Preview (EAP) and might break unexpectedly. Being in EAP means that you have the opportunity to provide feedback on the implementation of the driver. The functionality and behaviour released in the GA release may differ from those available in the EAP.

This driver is officially supported and endorsed by Neo4j. It is a standalone driver, independent of and not built on top of the common Neo4j Java Driver. While the latter provides a Neo4j-idiomatic way to access Neo4j from Java, the JDBC driver adheres to JDBC 4.3.

Note
This documentation refers to this driver as the Neo4j JDBC Driver and to the idiomatic Neo4j driver as the common Neo4j Java Driver.

badge measure?project=neo4j jdbc&token=sqb 6d14b417b6cd8c19820429dde7fd0dd34f0f5302&metric=coverage measure?project=neo4j jdbc&token=sqb 6d14b417b6cd8c19820429dde7fd0dd34f0f5302&metric=alert status

Download

Include in a Maven build

<dependency>
    <groupId>org.neo4j</groupId>
    <artifactId>neo4j-jdbc-full-bundle</artifactId>
    <version>6.0.0-M05</version>
</dependency>

Include in a Gradle build

dependencies {
    implementation 'org.neo4j:neo4j-jdbc-full-bundle:6.0.0-M05'
}

All releases from 6.0 onwards contain a zipped version of the driver, including a PDF version of the manual. We offer several distributions, please have a look here for more details. If you feel adventurous, grab the code and build the driver yourself. You find the instructions in our contribution documentation.

Quickstart

After adding the bundle to your application, you can use the Neo4j JDBC driver as any other JDBC driver.

Tip
In case any tooling asks you for the name of the concrete driver class, it is org.neo4j.jdbc.Neo4jDriver.
Listing 1. Acquire a connection and execute a query
link:docs/src/main/asciidoc/modules/ROOT/examples/Quickstart.java[role=include]
  1. Instantiate a JDBC connection. There’s no need to do any class loading beforehand, the driver will be automatically registered

  2. Create a (reusable) statement

  3. Execute a query

  4. Iterate over the results, as with any other JDBC result set

  5. JDBC’s indexing starts at 1

  6. JDBC also allows retrieval of result columns by name; the Neo4j JDBC driver also supports complex objects, such as lists

In the example above we used Neo4j’s lingua franca, Cypher, to query the database. The Neo4j JDBC Driver has limited support for using SQL as well. It can do so automatically or on a case-by-case basis. To translate a single, call java.sql.Connection#nativeSQL(String) and use the result in your queries. For automatic translation, instantiate the driver setting the optional URL parameter sql2cypher to true. The following example shows how:

Listing 2. Configure the JDBC driver to automatically translate SQL to cypher.
link:docs/src/main/asciidoc/modules/ROOT/examples/Quickstart.java[role=include]
  1. This SQL query will be translated into the same Cypher query of the previous example. The remainder of the method is identical to before.

For more informaiton, see SQL to Cypher translation.

Introduction

JDBC stands for "Java Database Connectivity" and is thus not bound exclusively to relational databases. Nevertheless, JDBC’s terms, definitions, and behavior are highly influenced by SQL and relational databases. As Neo4j is a graph database with quite a different paradigm than relational and a non-standardized behaviour in some areas, there might be some details that don’t map 100% in each place, and we make sure to educate you about these in this documentation.

This documentation focuses on install, use, and configure the Neo4j JDBC Driver, as well as discussing the driver’s design choices. While we do provide runnable examples showing how to use JDBC with Neo4j, this is not a documentation about how to correctly use JDBC as an API.

Note
The Neo4j JDBC Driver requires JDK 17 on the client side and Neo4j 5.5+ on the server side. To use it with a Neo4j cluster, server-side routing must be enabled on the cluster.

Features

  • Fully supports the Java module system

  • Adheres to JDBC 4.3

  • Can run any Cypher statement

  • Implements DatabaseMetaData and ResultSetMetaData as fully as possible with a nearly schemaless database and general very flexible result sets, allowing for automatic metadata retrieval from ETL and ELT tools

  • Provides an SPI to hook in translators from SQL to Cypher

  • Provides an optional default implementation to translate many SQL statements into semantically similar Cypher statements

  • Can be safely used with JDBC connection pools as opposed to the common Neo4j Java Driver or any JDBC driver based on that, as it doesn’t do internal connection pooling and transaction management otherwise than dictated by the JDBC Spec

The absence of any connection pooling and transaction management is an advantage of the Neo4j JDBC Driver over the common Neo4j Java Driver. It allows to pick and choose any database connection pooling system such as HikariCP and transaction management such as Jakarta Transactions.

Limitations

  • The database metadata is retrieved using Neo4j’s schema methods, such as db.labels, db.schema.nodeTypeProperties(), which may not always be accurate

  • While single label nodes map naturally to table names, nodes with multiple labels don’t

  • There is no reliable way to always determine the datatype for properties on nodes, as it would require reading all of them (which this driver does not do)

  • Some JDBC features are not supported yet (such as the CallableStatement); some feature will never be supported

  • The SQL to Cypher translator supports only a limited subset of clauses and SQL constructs that can be equivalently translated to Cypher (See Supported statements)

  • There is no "right" way to map JOIN statements to relationships, so your mileage may vary

When to use the Neo4j JDBC Driver?

  • Integration with ETL and ELT tools that don’t offer an integration based on the common Neo4j Java driver

  • An easier on-ramp towards Neo4j for people familiar with JDBC, who want to keep using that API, but with Cypher and Neo4j

  • Integration for ecosystems like Jakarta EE whose transaction management directly supports any JDBC-compliant driver

  • Integration with database migration tools such as Flyway

There is no need to redesign an application that is built on the common Neo4j Java Driver to migrate to this driver. If your ecosystem already provides a higher-level integration based on the common Neo4j Java Driver, such as Spring Data Neo4j (SDN) for Spring, there is no need to switch to something else. In case of Quarkus, the Neo4j JDBC Driver is an option to consider: although we do provide an integration for the common Neo4j Java Driver, this integration does not support Quarkus' transaction systems in contrast to this driver.

As there is little incentive to use this driver with Hibernate (Neo4j-OGM or SDN are the best alternatives for Neo4j), it might be worth giving Spring Data JDBC a try.

Differences with the previous versions of this driver and other JDBC drivers for Neo4j

Several other JDBC drivers exists for Neo4j, most notably the previous versions 4 and 5 of this driver. Most (if not all) of them wrap the common Neo4j Java Driver and implement the JDBC spec on top of that. This comes with a number of issues:

  • You end up with a pool of connection pools, because the common Neo4j Java Driver manages a connection pool, whereas JDBC drivers delegate this task to dedicated pooling solutions.

  • The transaction management of the common Neo4j Java Driver is not aligned with the way JDBC manages transactions.

  • Older versions of the Neo4j JDBC driver shade a few dependencies, such as Jackson as well as additional logging frameworks. This takes a toll on the classpath and, in case of logging, it leads to runtime problems.

  • Existing drivers with an SQL-to-Cypher translation layer are "read-only" and don’t support write statements, so they cannot be used for ETL use-cases aiming to ingest data into Neo4j.

Warning
This driver does not support automatic reshaping or flattening of the result sets, as the previous versions do. If you query for nodes, relationships, paths, or maps, you should use getObject on the result sets and cast them to the appropriate type (you find all of them inside the package org.neo4j.jdbc.values). However, the default SQL-to-Cypher translator will (when connected to a database) figure out what properties nodes have and turn the asterisk (*) into individual columns of nodes and relationships, just like what you would expect when running a SELECT * statement.

For information on upgrade/migration from other drivers to this one, see migrating.adoc.