
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the problem of connect with neo4j
Hi everyone,
I have a problem of connect with neo4j. i have added these driver (.jar), but i always have the problem of 'not suitable driver found for jdbc:neo4j://localhost:7474'. somebody can tell me how to solve this problem? my version of neo4j is 3.1.3 ;thanks.
rbecher‌
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
First of all, if you work with profiles you either need to give profile as parameter or set neo4j as default profile (best for now).
However, I did some tests and it seems that Neo4j JDBC bolt driver release 3.0.2 is the last that work with the connector:
https://github.com/neo4j-contrib/neo4j-jdbc/releases/download/3.0.2/neo4j-jdbc-bolt-3.0.2.jar
We need to investigate that..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jiayi,
you need the bolt driver only and then URL is "jdbc:neo4j:bolt://localhost:7687".
Here is the full custom connect statememt:
CUSTOM CONNECT TO "Provider=JDBCConnector_x64.dll;url=jdbc:neo4j:bolt://localhost:7687;UserId=neo4j;Password=neo";
- Ralf

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You should add jvm memory parameter -Xmx:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi sir,
i have added the parameter-Xmx, and i changed the URL but there is always the problem.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please contact me directly and send actual screenshots and log files: ralf.becher@tiq-solutions.de

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
First of all, if you work with profiles you either need to give profile as parameter or set neo4j as default profile (best for now).
However, I did some tests and it seems that Neo4j JDBC bolt driver release 3.0.2 is the last that work with the connector:
https://github.com/neo4j-contrib/neo4j-jdbc/releases/download/3.0.2/neo4j-jdbc-bolt-3.0.2.jar
We need to investigate that..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks for your answer! it work now!
