Reputation: 13
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
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