SQLSRV İşlevleri
PHP Manual

sqlsrv_close

(Bir sürüm bilgisi bulunamadı; sadece SVN'de olabilir.)

sqlsrv_close — Closes an open connection and releases resourses associated with the connection

Açıklama

bool sqlsrv_close ( resource $conn )

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

Değiştirgeler

conn

The connection to be closed.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Örnekler

Örnek 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_r( sqlsrv_errors(), true));
}

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

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

Ayrıca Bakınız


SQLSRV İşlevleri
PHP Manual