|
db2_client_infoReturns an object with properties that describe the DB2 database client Description
object db2_client_info
( resource
$connection
)This function returns an object with read-only properties that return information about the DB2 database client. The following table lists the DB2 client properties:
Parameters
Return Values
Returns an object on a successful call. Returns Examples
Example #1 A db2_client_info example To retrieve information about the client, you must pass a valid database connection resource to db2_client_info.
<?php The above example will output: DRIVER_NAME: string(8) "libdb2.a" DRIVER_VER: string(10) "08.02.0001" DATA_SOURCE_NAME: string(6) "SAMPLE" DRIVER_ODBC_VER: string(5) "03.51" ODBC_VER: string(10) "03.01.0000" ODBC_SQL_CONFORMANCE: string(8) "EXTENDED" APPL_CODEPAGE: int(819) CONN_CODEPAGE: int(819) See Also
|