gpt4 book ai didi

Python-MySQLdb,如何访问 `OperationalError` 中的异常错误代码?

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

我需要捕获特定的 OperationalError 异常。异常文本使用错误代码 2006。该库在 MySQLdb.constants.CR.SERVER_GONE_ERROR = 2006 处定义错误代码。

如何从异常中获取错误代码?

当我检查 MySQLdb._mysql_exceptions 时,有一个 OperationalError 异常的定义,但它没有构造函数或如何访问异常错误代码的描述。

最佳答案

您可以像下面这样捕获错误号:

try:
# Adding field 'Bug.bize_size_tag_name'
db.add_column('search_bug', 'bize_size_tag_name', orm['search.bug:bize_size_tag_name'])
except MySQLdb.OperationalError, errorCode:
if errorCode[0] == 1060:
pass
else:
raise

引用:https://www.programcreek.com/python/example/2584/MySQLdb.OperationalError

关于Python-MySQLdb,如何访问 `OperationalError` 中的异常错误代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43663130/

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