PHP 8.1.24 Released!

PHP 用 Microsoft SQL Server ドライバ

add a note

User Contributed Notes 1 note

up
0
denis dot khvorostin at gmail dot com
11 days ago
There is no way to check the state of the Sql Server Connection in PHP currently. The only way is to perform cheap query (e.g. SELECT GETDATE();) on the open connection, catch any SqlException that is thrown, check and re-establish the connection if needed
To Top