Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
PDO->getAttribute()
(no version information, might be only in CVS)
PDO->getAttribute() -- Retrieve a database connection attributePopis
class PDO {mixed getAttribute ( int 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.
Seznam parametrů
attribute
One of the PDO::ATTR_* constants. The constants that apply to database connections are as follows:
PDO::ATTR_AUTOCOMMIT PDO::ATTR_CASE PDO::ATTR_CLIENT_VERSION PDO::ATTR_CONNECTION_STATUS PDO::ATTR_DRIVER_NAME PDO::ATTR_ERRMODE PDO::ATTR_ORACLE_NULLS PDO::ATTR_PERSISTENT PDO::ATTR_PREFETCH PDO::ATTR_SERVER_INFO PDO::ATTR_SERVER_VERSION PDO::ATTR_TIMEOUT
Návratové hodnoty
A successful call returns the value of the requested PDO attribute. An unsuccessful call returns null.
PÅ™Ãklady
PÅ™edcházejÃcà | Domů | Dalšà |
PDO->exec() | Nahoru |