无法使用jdbc连接到localhost orientdb

时间:2016-01-19 11:30:12

标签: orientdb

我正在使用OrientDB 2.1.9并创建了名为“TimespentEvents”的地理图数据库。

尝试使用JDBC驱动程序在同一台计算机上使用JDBC驱动程序与URL'jdbc:orient:remote:localhost / TimespentEvents'和用户/密码admin / admin进行连接时遇到以下异常:

Caused by: com.orientechnologies.orient.core.exception.OConfigurationException: Error on opening database: the engine 'remote' was not found. URL was: remote:localhost/TimespentEvents. Registered engines are: [plocal, memory]

将URL更改为“jdbc:orient:plocal:TimespentEvents”时,错误变为:

Caused by: com.orientechnologies.orient.core.exception.OStorageException: Cannot open the storage 'TimespentEvents' because it does not exist in path: localhost/TimespentEvents

下面是我在类路径中包含的jdbc驱动程序jar:

  • orientdb-JDBC-2.1.9.jar
  • orientdb核-2.1.9.jar

非常感谢任何帮助。

谢谢&的问候,

Setya

1 个答案:

答案 0 :(得分:4)

原来我必须加入2个额外的罐子:

  • orientdb-enterprise-2.1.9.jar
  • orientdb-客户2.1.9.jar

谢谢&的问候,

Setya