SQLSRV Funktionen
PHP Manual

sqlsrv_close

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

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

Beschreibung

bool sqlsrv_close ( resource $conn )

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

Parameter-Liste

conn

The connection to be closed.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #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 );
?>

Siehe auch


SQLSRV Funktionen
PHP Manual