Database connection to Neo4j with Pentaho Spoon

2019-08-14 22:36发布

I want to connect to Neo4j with Pentaho Kettle Spoon. I downloaded jdbc driver of neo4j with this and I tried to use this guide to connect to neo4j with Pentaho Kettle Spoon.
I have two main problems:

  1. downloaded JDBC Driver is zip file.
    I changed Driver extension to jar for solving this problem.
  2. when I changed extension to jar and copy it in lib folder and follow this guide I faced missing driver error:

org.neo4j.jdbc.Driver could not be found

How can I solve these problems?

2条回答
相关推荐>>
2楼-- · 2019-08-14 23:24

I put a connector for Neo4j on the PDI Marketplace, which adds "Neo4j" to the list of database sources so you don't have to configure a Generic Driver or download the driver from Neo4j.

查看更多
3楼-- · 2019-08-14 23:31

You can not rename the .zip file you downloaded from Github and add to lib folder. You need to compile the source code and add the .jar file to it. Or you can download the already compiled file from here and add to the data-integration\lib folder and restart the spoon.


In Table Input step select

  • Connection type as Generic database
  • Custom connection URL as jdbc:neo4j://localhost:7474
  • Custom driver class name as org.neo4j.jdbc.Driver
查看更多
登录 后发表回答