Ready to get started?

Download a free trial of the Neo4J Driver to get started:

 Download Now

Learn more:

Neo4J Icon Neo4J JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with Neo4J.

Connect to Neo4J Data in CloverDX (formerly CloverETL)



Transfer Neo4J data using the visual workflow in the CloverDX data integration tool.

The CData JDBC Driver for Neo4J enables you to use the data transformation components in CloverDX (formerly CloverETL) to work with Neo4J as sources. In this article, you will use the JDBC Driver for Neo4J to set up a simple transfer into a flat file. The CData JDBC Driver for Neo4J enables you to use the data transformation components in CloverDX (formerly CloverETL) to work with Neo4J as sources. In this article, you will use the JDBC Driver for Neo4J to set up a simple transfer into a flat file.

Connect to Neo4J as a JDBC Data Source

  1. Create the connection to Neo4J data. In a new CloverDX graph, right-click the Connections node in the Outline pane and click Connections -> Create Connection. The Database Connection wizard is displayed.
  2. Click the plus icon to load a driver from a JAR. Browse to the lib subfolder of the installation directory and select the cdata.jdbc.neo4j.jar file.
  3. Enter the JDBC URL.

    To connect to Neo4j, set the following connection properties:

    • Server: The server hosting the Neo4j instance.
    • Port: The port on which the Neo4j service is running. The provider connects to port 7474 by default.
    • User: The username of the user using the Neo4j instance.
    • Password: The password of the user using the Neo4j instance.

    Built-in Connection String Designer

    For assistance in constructing the JDBC URL, use the connection string designer built into the Neo4J JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.

    java -jar cdata.jdbc.neo4j.jar

    Fill in the connection properties and copy the connection string to the clipboard.

    A typical JDBC URL is below:

    jdbc:neo4j:Server=localhost;Port=7474;User=my_user;Password=my_password;

Query Neo4J Data with the DBInputTable Component

  1. Drag a DBInputTable from the Readers selection of the Palette onto the job flow and double-click it to open the configuration editor.
  2. In the DB connection property, select the Neo4J JDBC data source from the drop-down menu.
  3. Enter the SQL query. For example: SELECT CategoryId, CategoryName FROM ProductCategory WHERE CategoryOwner = 'CData Software'

Write the Output of the Query to a UniversalDataWriter

  1. Drag a UniversalDataWriter from the Writers selection onto the jobflow.
  2. Double-click the UniversalDataWriter to open the configuration editor and add a file URL.
  3. Right-click the DBInputTable and then click Extract Metadata.
  4. Connect the output port of the DBInputTable to the UniversalDataWriter.
  5. In the resulting Select Metadata menu for the UniversalDataWriter, choose the ProductCategory table. (You can also open this menu by right-clicking the input port for the UniversalDataWriter.)
  6. Click Run to write to the file.