「MySQL」タイムアウトの設定値を表示する
1.MySQLへの新しい接続に使用されるタイムアウト値を表示します
SQL構文
>show global variables like “%timeout%";
実行結果
Variable_name Value connect_timeout 10 delayed_insert_timeout 300 innodb_flush_log_at_timeout 1 略
2.現在の接続に有効なタイムアウト値を表示します
SQL構文
>show session variables like “%timeout%";
実行結果
Variable_name Value connect_timeout 10 delayed_insert_timeout 300 innodb_flush_log_at_timeout 1 略
3.MySQLのシステム変数のタイムアウト値を表示します
SQL構文
>show variables like “%timeout%";
実行結果
Variable_name Value connect_timeout 10 delayed_insert_timeout 300 innodb_flush_log_at_timeout 1 略