PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

sqlsrv_client_info - Returns information about the client and specified connection | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

sqlsrv_client_info

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

sqlsrv_client_infoReturns 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
DriverDllName SQLNCLI10.DLL
DriverODBCVer ODBC version (xx.yy)
DriverVer SQL Server Native Client DLL version (10.5.xxx)
ExtensionVer php_sqlsrv.dll version (2.0.xxx.x)

例1 sqlsrv_client_info() example

<?php
$serverName 
"serverName\sqlexpress";
$connOptions = array("UID"=>"username""PWD"=>"password");
$conn sqlsrv_connect$serverName$connOptions );

if( 
$conn === false ) {
    die( 
print_rsqlsrv_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 />";
}
?>

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「sqlsrv_client_info - Returns information about the client and specified connection」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | sqlsrv_client_info - Returns information about the client and specified connection」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: