OrientDB 控制台诊断 - 不是很有帮助?
OrientDB console diagnostic - not very helpful?
我正在 运行 一些 OrientDB 脚本并获得以下内容。我怎样才能让它在脚本中报告错误行 - 错误消息非常无用?
另外,开头的doing SET VERBOSE 10;
也无济于事。
...
Property created successfully.
Property created successfully.
Property created successfully.
Property created successfully.
Error: com.orientechnologies.orient.core.exception.OCommandExecutionException: Class not found: Subscription
DB name="my.db"
Loading script /Users/hristostoyanov/projects/gitlab/peruncs/recres_repos/recres/recres-webapp/src/main/odb/scripts/sample_data.sql...
Disconnecting from the database [my.db]...OK
错误:
Error: com.orientechnologies.orient.core.exception.OCommandExecutionException: Class not found: Subscription
DB name="my.db"
表示您正在尝试对不存在的 Class 执行命令,在本例中为订阅。
希望对您有所帮助
此致
原来是Orient DB 3.0.2 issue
此外,如果您在长时间执行脚本期间需要更好的反馈,请使用以下命令启动脚本:
set echo on;
我正在 运行 一些 OrientDB 脚本并获得以下内容。我怎样才能让它在脚本中报告错误行 - 错误消息非常无用?
另外,开头的doing SET VERBOSE 10;
也无济于事。
...
Property created successfully.
Property created successfully.
Property created successfully.
Property created successfully.
Error: com.orientechnologies.orient.core.exception.OCommandExecutionException: Class not found: Subscription
DB name="my.db"
Loading script /Users/hristostoyanov/projects/gitlab/peruncs/recres_repos/recres/recres-webapp/src/main/odb/scripts/sample_data.sql...
Disconnecting from the database [my.db]...OK
错误:
Error: com.orientechnologies.orient.core.exception.OCommandExecutionException: Class not found: Subscription
DB name="my.db"
表示您正在尝试对不存在的 Class 执行命令,在本例中为订阅。
希望对您有所帮助
此致
原来是Orient DB 3.0.2 issue
此外,如果您在长时间执行脚本期间需要更好的反馈,请使用以下命令启动脚本:
set echo on;