Microsoft SQL Server Driver for PHP

add a note add a note

User Contributed Notes 1 note

up
0
denis dot khvorostin at gmail dot com
11 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