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

sqlsrv_close - Closes an open connection and releases resourses associated with the connection | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

sqlsrv_close

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

sqlsrv_closeCloses an open connection and releases resourses associated with the connection

説明

bool sqlsrv_close ( resource $conn )

Closes an open connection and releases resourses associated with the connection.

パラメータ

conn

The connection to be closed.

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 sqlsrv_close() example

<?php
$serverName 
"serverName\sqlexpres";
$connOptions = array("UID"=>"username""PWD"=>"password""Database"=>"dbname");
$conn sqlsrv_connect$serverName$connOptions );
if( 
$conn === false ) {
     die( 
print_rsqlsrv_errors(), true));
}

//-------------------------------------
// Perform database operations here.
//-------------------------------------

// Close the connection.
sqlsrv_close$conn );
?>

参考


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

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