downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

sqlsrv_commit> <sqlsrv_client_info
[edit] Last updated: Fri, 14 Jun 2013

view this page in

sqlsrv_close

(Não há informação de versão disponível, talvez apenas no SVN)

sqlsrv_closeCloses an open connection and releases resourses associated with the connection

Descrição

bool sqlsrv_close ( resource $conn )

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

Parâmetros

conn

The connection to be closed.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em caso de falha.

Exemplos

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

Veja Também



add a note add a note User Contributed Notes sqlsrv_close - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites