cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Neo4j java driver vs neo4j JDBC driver

Hey there,

I developed a simple java application to access neo4j using neo4j java driver and another one using neo4j JDBC driver.

can someone tell me what is the difference between them? and which one should I use.
Thanks

4 REPLIES 4

Hello, the JDBC driver is built on top of the native Java driver and implements the JDBC spec.

Its main use nowadays is for interoperability with tools that are designed for relational database (BI tools for instance).
If you are working on a new application, you should use the native Java driver directly.

Thanks, @florent.biville1
just to make sure that I understood, do you mean with native java driver the neo4j java driver?
one more thing is neo4j java driver more powerful than JDBC?

By "native", I indeed mean the official Java driver.

JDBC is a wrapper of that driver and is only meaningful when you deal with legacy applications that only understand relational databases.

For new applications without this relational database requirement, use the official "native" Java driver directly since you don't need the JDBC overhead.

Greate, Thanks again that was really perfect answer
appreciated.