可以我使用Neo4j BI连接器与我的Java应用程序吗?

huangapple go评论71阅读模式
英文:

Can I use Neo4j BI Connector with my Java app?

问题

Neo4j最近添加了一个BI连接器工具(neo4j.com/bi-connector),它可以将图数据库中的关系数据返回给诸如Tableau之类的商业智能工具。问题是,如果我已将jar文件添加到我的Java应用程序类路径中,我是否可以向此连接器发送SQL查询?如果可以,我应该使用哪些API将此SQL查询发送到驱动程序?
我正在使用Neo4j 4.0。

英文:

Neo4j have recently added a BI connector tool (neo4j.com/bi-connector) which can return relational data from your graph database to your business intelligence tool such as Tableau. The question is can i send SQL queries to this connector assuming i have added the jar file to my java application class path? If yes, which APIs should i use to send this SQL query to the driver?
I'm using Neo4j4.0.

答案1

得分: 1

访问 neo4j.com/bi-connector,如果您查看从下载中获得的文档 PDF,在第10页展示了如何建立连接的部分,您将会看到您会得到一个连接对象。在获得该对象之后,您将拥有一个标准的 JDBC 连接,这是一个 Java 接口,告诉库如何与 SQL 数据库通信。有许多不同的工具使用这个接口,这在一定程度上取决于用户的偏好。一个常见的工具是JOOQ

英文:

For neo4j.com/bi-connector, if you look at the document PDF that you get when you download it, on page 10 where they show how to establish a connection you'll see that you get a connection object. After you have that, you have a standard JDBC connection which is a Java interface that tells libraries how to talk to a SQL database. There are a lot of different tools that use this interface, it's kind of user preference. A common one is JOOQ.

huangapple
  • 本文由 发表于 2020年9月26日 22:14:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/64078682.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定