Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
firstly thanks for the time given to answer questions.
I have a question related to the JDBC connector.
I installed :
> the JDBC drivers for Neo4j,
> the JDBC connector,
> update my JVM version,
> initiate a Neo4j database (including data)
> and finally try to connect through QV to neo4j
- select JDBC driver (x64) (win 7 x64)
- Connect
- set url=jdbc:neo4j://localhost:7474/
- set login/pwd
and test to finally get a popup saying : "Unauthorized" (nothing more !! wow)
Did someone already encounter this issue ? Can you provide me some help ?
Thanks per advance.
Hi David,
just get in touch with me directly and send me all details (versions, jars, screenshots etc.):
- Ralf
Btw. this is the latest Neo4j JDBC driver from the GitHub repo:
Thanks Ralf for your prompt answer,
but i think i was really tired yesterday night because my problem was just due to the Neo4j base password.
I used the wrong one ... this explain why the error message is : "Unauthorized"
Everythink is ok with the right pwd and i'm able to load data inside QV.
Sorry for the inconvenience.
David.
No problem. Btw. you can decompose the JSON strings by using the properties, eg:
SQL MATCH (n) RETURN n LIMIT 100;
=>
SQL MATCH (n) RETURN n.id, n.name, ... LIMIT 100;