ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


reference:serverinfo

This is an old revision of the document!


serverInfo

In portable applications, always set the fetch mode to ADODB_FETCH_NUM, as the associative key names are not the same across all databases

Syntax
string[] serverInfo()

Description

The function serverInfo() returns general information about the database server. See the above note about portability.

Usage

/*
 * Connection to Oracle Database
 */
$ar = $db->getServerInfo();
print_r($ar);
/*
 * Returns: 
Array
(
    [compat] => 11.2.0.0.0
    [description] => Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production
    [version] => 11.2.0.2.0
)
/*
 * Connection to IBM DB2 database
 */
$ar = $db->getServerInfo();
print_r($ar);
/*
 * Returns: 
Array
(
    [version] => DB2 v10.5.0.5:5
    [fixpack] => 5
    [description] =>
)
reference/serverinfo.1437509813.txt.gz ยท Last modified: 2017/04/21 11:20 (external edit)