Query: sqlsrv_server_info
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SQLSRV_SERVER_INFO(3) SQLSRV_SERVER_INFO(3) sqlsrv_server_info - Returns information about the serverSYNOPSISarray sqlsrv_server_info (resource $conn)DESCRIPTIONReturns information about the server.PARAMETERSo $conn - The connection resource that connects the client and the server.RETURN VALUESReturns 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. | | | | +-----------------+----------------------------+EXAMPLESExample #1 sqlsrv_server_info(3) example <?php $serverName = "serverNamesqlexpress"; $conn = sqlsrv_connect( $serverName); if( $conn === false ) { die( print_r( sqlsrv_errors(), true)); } $server_info = sqlsrv_server_info( $conn); if( $server_info ) { foreach( $server_info as $key => $value) { echo $key.": ".$value."<br />"; } } else { die( print_r( sqlsrv_errors(), true)); } ?>SEE ALSOsqlsrv_client_info(3). PHP Documentation Group SQLSRV_SERVER_INFO(3)
Related Man Pages |
---|
sqlsrv_execute(3) - php |
sqlsrv_client_info(3) - php |
sqlsrv_fetch(3) - php |
sqlsrv_commit(3) - php |
sqlsrv_num_fields(3) - php |
Similar Topics in the Unix Linux Community |
---|
Script to parse a file faster |
Need help to replace a perl pattern matching |
Help need with PERL multiple search pattern matching! |