vesoft-inc / nebula-python

Client API of Nebula Graph in Python
193 stars 78 forks source link

session执行了错误的语句时无法提示错误信息 #128

Closed zifeiYv closed 3 years ago

zifeiYv commented 3 years ago

如题所述,当用session.execute()执行一个错误的语句时,返回值是一个空的ResultSet,如果能将错误信息返回,对于调试程序来说将会有极大的便利。

HarrisChu commented 3 years ago

可以校验 ResultSet 的 is_succeeded,如果不是 true 的话,错误信息是 error_msg()

https://github.com/vesoft-inc/nebula-python/blob/master/nebula2/data/ResultSet.py#L59

zifeiYv commented 3 years ago

感谢回复

zifeiYv commented 3 years ago

感谢回复