我正在使用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:
非常感谢任何帮助。
谢谢&的问候,
Setya
答案 0 :(得分:4)
原来我必须加入2个额外的罐子:
谢谢&的问候,
Setya