SQLSRV Funkcje
PHP Manual

sqlsrv_close

(No version information available, might only be in SVN)

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

Opis

bool sqlsrv_close ( resource $conn )

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

Parametry

conn

The connection to be closed.

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #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 );
?>

Zobacz też:


SQLSRV Funkcje
PHP Manual