PHP 8.3.4 Released!

Драйвер СУБД Microsoft SQL Server для PHP

add a note

User Contributed Notes 1 note

up
-1
denis dot khvorostin at gmail dot com
5 months 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