sqlsrv_client_info

(Информация о версии неизвестна, возможно, только в SVN)

sqlsrv_client_info — Returns information about the client and specified connection


Описание

array sqlsrv_client_info ( resource $conn )

Returns information about the client and specified connection


Список параметров

conn -

The connection about which information is returned.


Возвращаемые значения

Returns an associative array with keys described in the table below. Returns FALSE otherwise.

Array returned by sqlsrv_client_info
Key Description
DriverDllNameSQLNCLI10.DLL
DriverODBCVerODBC version (xx.yy)
DriverVerSQL Server Native Client DLL version (10.5.xxx)
ExtensionVerphp_sqlsrv.dll version (2.0.xxx.x)


Примеры

Пример #1 sqlsrv_client_info() example
$serverName = "serverName\sqlexpress";
$connOptions = array("UID"=>"username", "PWD"=>"password");
$conn = sqlsrv_connect( $serverName, $connOptions );
if( $conn === false ) {
    die( print_r( sqlsrv_errors(), true));
}
if( $client_info = sqlsrv_client_info( $conn)) {
    foreach( $client_info as $key => $value) {
        echo $key.": ".$value."<br />";
    }
} else {
    echo "Error in retrieving client info.<br />";
}


Смотрите также


Описание на ru2.php.net
Описание на php.ru