OrientDB 查询适用于 Studio 但不适用于 PyOrient
OrientDB query works on Studio but not with PyOrient
这适用于 OrientDB Studio(eset
是一个 embeddedSet):
UPDATE #37:0 SET eset = eset || ["foo", "bar"];
但是当我使用 PyOrient 时不是:
command = 'UPDATE #37:0 SET eset = eset || ["foo", "bar"];'
client.command(command)
>>> pyorient.exceptions.PyOrientSQLParsingException: com.orientechnologies.orient.core.sql.OCommandSQLParsingException - Error on parsing command: Invalid keyword ||.
显然它也发生在 Java: https://community.orientdb.org/t/linkset-manipulation/171
有什么方法可以重写该查询以删除 ||
部分吗?我无法判断 documentation.
的正面或反面
PyOrient 仍然使用不支持 ||
运算符的遗留 SQL 执行器。
我建议使用以下(不完全等同,但它应该有效)
UPDATE #37:0 ADD eset = ["foo", "bar"];
这适用于 OrientDB Studio(eset
是一个 embeddedSet):
UPDATE #37:0 SET eset = eset || ["foo", "bar"];
但是当我使用 PyOrient 时不是:
command = 'UPDATE #37:0 SET eset = eset || ["foo", "bar"];'
client.command(command)
>>> pyorient.exceptions.PyOrientSQLParsingException: com.orientechnologies.orient.core.sql.OCommandSQLParsingException - Error on parsing command: Invalid keyword ||.
显然它也发生在 Java: https://community.orientdb.org/t/linkset-manipulation/171
有什么方法可以重写该查询以删除 ||
部分吗?我无法判断 documentation.
PyOrient 仍然使用不支持 ||
运算符的遗留 SQL 执行器。
我建议使用以下(不完全等同,但它应该有效)
UPDATE #37:0 ADD eset = ["foo", "bar"];