sqlsrv_close

(No version information available, might only be in Git)
Closes 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.

Parameters:
conn

The connection to be closed.

Returns:

Returns TRUE on success or FALSE on failure.

Examples:
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 );
?>

See also:

sqlsrv_connect() -

doc_php
2016-02-24 16:18:38
Comments
Leave a Comment

Please login to continue.