sqlsrv_close

(Ingen versionsoplysninger tilgængelige, findes måske kun i SVN)

sqlsrv_closeCloses an open connection and releases resourses associated with the connection

Beskrivelse

bool sqlsrv_close ( resource $conn )

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

Parametre

conn

The connection to be closed.

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Eksempler

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

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top