Fork me on GitHub
#sql
<
2019-07-16
>
br17:07:39

@seancorfield Hi Sean, have you seen anyone using next-jdbc with Neo4j?

seancorfield17:07:10

Not that I know of. I didn't even know neo4j had a JDBC driver...?

seancorfield17:07:58

Ah, I guess it has had one for about three years @benisrood!

seancorfield17:07:54

With the JDBC driver on your classpath, you ought to be able to use a db-spec of

{:dbtype "neo4j:bolt" :classname "org.neo4j.jdbc.bolt.BoltDriver" :dbname "..." ...}
(or use one of the other protocols/classes).

seancorfield17:07:38

You could probably just use :classname "org.neo4j.jdbc.Driver" with any of the protocols, now I look at the source code... with :dbtype "neo4j:bolt" or "neo4j:bolt+routing" or "neo4j:http" -- LMK if you try it and run into any issues.

br18:07:24

Nice, thanks Sean