gpt4 book ai didi

python - 执行错误的 SQL 查询时如何避免 python 脚本崩溃?

转载 作者:行者123 更新时间:2023-11-29 04:43:55 25 4
gpt4 key购买 nike

我正在使用 Python 2.7.6 和 MySqldb 模块。我有一个有时会崩溃的 MySQL 查询。暂时很难捕获根本原因。执行 SQL 查询时如何避免 python 脚本崩溃?我怎样才能让它优雅地失败?

代码看起来有点像;

cursor.execute(query)

最佳答案

你应该抛出一个异常:

try:
cursor.execute(query)
except mysql.connector.Error:
"""your handling here"""

这是 MySQL Python Dev guide 的链接:

关于python - 执行错误的 SQL 查询时如何避免 python 脚本崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22706682/

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