void mysql_debug(const char *debug)
説明
指定された文字列で DBUG_PUSH
を実行します。mysql_debug()
は、Fred Fish
デバッグライブラリを使用します。この関数を使用するには、デバッグをサポートするためのクライアントライブラリをコンパイルする必要があります。
See 項E.1. 「MySQL サーバのデバッグ」。 See
項E.2. 「MySQL クライアントのデバッグ」。
戻り値
ありません。
エラー
ありません。
例
次のコードを実行すると、クライアントライブラリによってクライアントマシンの
/tmp/client.trace
にトレースファイルが生成されます。
mysql_debug("d:t:O,/tmp/client.trace");
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.