vignesh
vignesh

Reputation: 13

how to import data in neo4j via sql connection instead of csv?

I am using a NEO4J graph database but my application data is stored in MySQL database. My need is I want to import data in NEO4J via SQL connection instead of Csv.

Upvotes: 1

Views: 94

Answers (1)

InverseFalcon
InverseFalcon

Reputation: 30417

You'll need the APOC Procedures library for this one, and you'll also need the MySQL jdbc driver jar in your plugins folder as well.

APOC Procedures Load JDBC documentation

APOC Procedures Load JDBC example of usage

Upvotes: 1

Related Questions