ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:serverinfo

This is an old revision of the document!


serverInfo

Syntax
string[] serverInfo()

Description

The function serverInfo() returns 3 items of general information about the database server. See the below note about portability.

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

Usage

/*
 * Connection to Oracle Database
 */
$ar = $db->serverInfo();
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->serverInfo();
print_r($ar);
/*
 * Returns: 
Array
(
    [version] => DB2 v10.5.0.5:5
    [fixpack] => 5
    [description] =>
)
v5/reference/connection/serverinfo.1685871669.txt.gz · Last modified: 2023/06/04 11:41 by dregad