在 Python 中处理 MySQL 警告
问题:
在 Python 脚本中,如何处理您在 MySQL 查询期间捕获了“Data truncated for column 'xxx'”形式的警告?
原始问题中给出了具体的代码片段,但它们未能捕获警告。
答案:
MySQL 警告不会作为异常引发。相反,它们会报告给 stderr。要处理它们,您需要使用 Python 警告模块。
要配置警告的处理,请使用 warnings.filterwarnings 函数。例如,要将 MySQLdb 警告转为异常:
<code class="python">import warnings warnings.filterwarnings('error', category=MySQLdb.Warning)</code>
或者,您可以使用“忽略”来完全抑制警告。
您还可以根据特定条件设置更精细的过滤器。例如,以下代码忽略除与截断相关的警告之外的所有警告:
<code class="python">warnings.filterwarnings('ignore', category=MySQLdb.Warning) warnings.filterwarnings('error', category=MySQLdb.Warning, message='Data truncated')</code>
以上是如何在 Python 中处理 MySQL 查询期间的'数据截断”警告?的详细内容。更多信息请关注PHP中文网其他相关文章!