有沒有辦法從PHP直接獲取MySQL等待超時?從PHP獲取MySQL等待超時
0
A
回答
7
只是做一個正常的mysql查詢。
mysql> show variables where Variable_name='wait_timeout';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wait_timeout | 28800 |
+---------------+-------+
1 row in set (0.07 sec)
在PHP中,它看起來像這樣。
// it's been a while to there might be typos
$res = mysql_query("show variables where Variable_name='wait_timeout'");
$arr = mysql_fetch_assoc($res);
echo $arr['Variable_name'];
echo $arr['Value'];
相關問題
- 1. 鎖等待超時超標在MySQL
- 2. c3p0客戶端超時,等待從com.mchange.v2.resourcepool.BasicResourcePool獲取資源
- 3. Mysql鎖定等待超時錯誤
- 4. Mysql鎖定等待超時錯誤
- 5. 等待超時 - Windows
- 6. 等待不超時
- 7. Php會話鎖定等待超時
- 8. 獲取等待時間
- 9. 等待操作超時Win32Exception(0x80004005):等待操作超時azure
- 10. WebDriver等待超時和隱式等待超時的區別?
- 11. 設備從ntpd獲取時間,但「ntpq -p」命令正在等待超時
- 12. 等待操作超時
- 13. 等待操作超時
- 14. 異步等待超時
- 15. 等待操作超時ASP.NET
- 16. 等待UDPClient.ReceiveAsync與超時
- 17. RabbitMQ等待超時消息
- 18. 超時30秒後,等待
- 19. 等待操作超時
- 20. 等待MongoConnection的超時
- 21. Websocket等待超時消息
- 22. net.spy.memcached.OperationTimeoutException:超時等待值
- 23. System.ComponentModel.Win32Exception:等待操作超時
- 24. Firefox的等待超時[WatiN]
- 25. 等待操作超時。 ASP
- 26. 等待操作超時mvc
- 27. innodb鎖定等待超時
- 28. QTime或QTimer等待超時
- 29. 超過等待超時後,mysql事務會發生什麼?
- 30. MySQL錯誤1205:超出鎖定等待超時
問題不明確 – ariefbayu 2011-04-21 07:36:26
您的意思是! – Gowri 2011-04-21 07:36:45
他想知道你是否可以從數據庫中找到它的超時時間(如PHP中的最大執行時間)是否來自PHP。 @ user718480你可能需要對數據庫使用某種查詢。 – ohmusama 2011-04-21 07:39:51