(PHP 5 >= 5.1.0, PECL pdo:0.2-1.0.3)
PDO::getAttribute — Retrieve a database connection attribute
This function returns the value of a database connection attribute. To retrieve PDOStatement attributes, refer to PDOStatement::getAttribute().
Note that some database/driver combinations may not support all of the database connection attributes.
One of the PDO::ATTR_* constants. The constants that apply to database connections are as follows:
A successful call returns the value of the requested PDO attribute. An unsuccessful call returns null.
Example #1 Retrieving database connection attributes
<?php$conn = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');$attributes = array( "AUTOCOMMIT", "ERRMODE", "CASE", "CLIENT_VERSION", "CONNECTION_STATUS", "ORACLE_NULLS", "PERSISTENT", "PREFETCH", "SERVER_INFO", "SERVER_VERSION", "TIMEOUT");foreach ($attributes as $val) { echo "PDO::ATTR_$val: "; echo $conn->getAttribute(constant("PDO::ATTR_$val")) . "\n";}?>