update : 2015.11.03
php.shukuma.com검색:
|
db2_client_info(PECL ibm_db2 >= 1.1.1) db2_client_info — Returns an object with properties that describe the DB2 database client 설명
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:
인수
반환값
Returns an object on a successful call. Returns 예제
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 위 예제의 출력: 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) |