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

search for in the

Sybase> <sqlsrv_send_stream_data
[edit] Last updated: Wed, 19 Jun 2013

view this page in

sqlsrv_server_info

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

sqlsrv_server_infoReturns information about the server

Descrição

array sqlsrv_server_info ( resource $conn )

Returns information about the server.

Parâmetros

conn

The connection resource that connects the client and the server.

Valor Retornado

Returns an array as described in the following table:

Returned Array
CurrentDatabase The connected-to database.
SQLServerVersion The SQL Server version.
SQLServerName The name of the server.

Exemplos

Exemplo #1 sqlsrv_server_info() example

<?php
$serverName 
"serverName\sqlexpress";
$conn sqlsrv_connect$serverName);
if( 
$conn === false ) {
     die( 
print_rsqlsrv_errors(), true));
}

$server_info sqlsrv_server_info$conn);
if( 
$server_info )
{
    foreach( 
$server_info as $key => $value) {
       echo 
$key.": ".$value."<br />";
    }
} else {
      die( 
print_rsqlsrv_errors(), true));
}
?>

Veja Também



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

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