Python での MySQL 警告のトラップ
Python で MySQL を使用してクエリを実行すると、「列 ' のデータが切り捨てられました」などの警告が発生する可能性があります。 xxx」。これらの警告を処理するには、次のコードを使用しようとします:
<code class="python">import MySQLdb try: cursor.execute(some_statement) # code steps always here: No Warning is trapped # by the code below except MySQLdb.Warning, e: # handle warnings, if the cursor you're using raises them except Warning, e: # handle warnings, if the cursor you're using raises them</code>
ただし、このコードは意図したとおりに動作しない可能性があります。これは、MySQL の警告はデフォルトでは例外として発生しないためです。
警告を効果的に処理するには、Python 警告モジュールを使用して警告に対して何を行うかを構成する必要があります。このアプローチを示すコードの修正バージョンを次に示します。
<code class="python">import warnings import MySQLdb warnings.filterwarnings('error', category=MySQLdb.Warning) try: cursor.execute(some_statement) # code steps now execute without catching warnings except MySQLdb.Warning as e: # warnings are now raised as exceptions and can be handled here except MySQLdb.Error as e: # handle other errors as usual</code>
このコードでは、warnings.filterwarnings('error', category=MySQLdb.Warning) を使用して、MySQLdb を処理するように警告モジュールを構成します。警告 警告はエラーとして表示されます。これにより、try/excel ブロックを使用してこれらの警告をキャッチできるようになります。
あるいは、メッセージ文字列やモジュールなどの他の条件で警告をフィルタリングし、警告の処理方法をより詳細に制御できます。
以上がPython で MySQL 警告を効果的にトラップするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。