Update PHPT comment.

This commit is contained in:
v-dareck 2017-02-16 13:56:02 -08:00
parent 98fd299a31
commit b96499ff00

View file

@ -12,7 +12,8 @@ if( $conn === false ) {
}
$conn = null;
// with unixODBC 2.3.4 + connection pooling the NVARCHAR(1) section below may seg fault
// with unixODBC 2.3.4 + connection pooling the NVARCHAR(1) section older versions may error as
// unixODBC error returns behave differently with connection pooling.
$conn = sqlsrv_connect($serverName, $connectionInfo);
if( $conn === false ) {
die( print_r( sqlsrv_errors(), true ));