gpt4 book ai didi

python - py2neo 引发 ConstraintViolation 错误,shell 不会

转载 作者:太空宇宙 更新时间:2023-11-04 08:55:27 24 4
gpt4 key购买 nike

当我在 py2neo 中尝试 import 语句时出现 ConstraintViolation 错误,但是当我直接在 neo4j 的 shell 中导入时不会出现同样的错误。我在两者中都使用了完全相同的语句,在 py2neo 中我只是使用 graph.cypher.execute(...)。请注意,我已多次确保每个 ID 都是唯一的——没有重复值。

py2neo.cypher.error.schema.ConstraintViolation: Node 0 already exists with label Employee and property "ID"=[XXXX]

使用 py2neo,即使错误被调用并结束程序,整个命令仍然会运行,就像在 neo4j shell 中一样填充图形。

问题:我怎样才能捕捉到错误,以便其余的导入语句能够正常运行?我 try catch 以下内容但未成功:error.ConstraintViolation、error.schema.ConstraintViolation。

此外:导入在遇到该错误后继续,这很好。但是,在“继续”打印后,导入仍在继续。

try:
graph.cypher.execute(statement)
except ConstraintViolation as e:
# print(traceback.format_exec())
print "ConstraintViolation error"
print "continues"

最佳答案

您需要正确导入 ConstraintViolation 并捕获它:

from py2neo.cypher.error.schema import ConstraintViolation
import traceback

try:
# your cypher.execute() here

except ConstraintViolation as e:
# do whatever you want to do when the error occurs
# e.g. print the traceback of the error
print(traceback.format_exc())

关于python - py2neo 引发 ConstraintViolation 错误,shell 不会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30667298/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com