The Pdo\Firebird class
A PDO subclass representing a connection using the Firebird PDO driver.
Intro
A PDO subclass representing a connection using the Firebird PDO driver.
Class synopsis
PdoFirebirdextendsPDOInheritedConstantsConstantspublicconstintPdo\Firebird::ATTR_DATE_FORMATpublicconstintPdo\Firebird::ATTR_TIME_FORMATpublicconstintPdo\Firebird::ATTR_TIMESTAMP_FORMATpublicconstintPdo\Firebird::TRANSACTION_ISOLATION_LEVELpublicconstintPdo\Firebird::READ_COMMITTEDpublicconstintPdo\Firebird::REPEATABLE_READpublicconstintPdo\Firebird::SERIALIZABLEpublicconstintPdo\Firebird::WRITABLE_TRANSACTIONMethodsInheritedMethods
Predefined Constants
Pdo\Firebird::ATTR_DATE_FORMATSets the date format.
Pdo\Firebird::ATTR_TIME_FORMATSets the time format.
Pdo\Firebird::ATTR_TIMESTAMP_FORMATSets the timestamp format.
Pdo\Firebird::TRANSACTION_ISOLATION_LEVELAttribute to sets the transaction isolation level. This can be one of
Pdo\Firebird::READ_COMMITTED,Pdo\Firebird::REPEATABLE_READ, orPdo\Firebird::SERIALIZABLE.Pdo\Firebird::READ_COMMITTEDFlag denoting the ANSI transaction isolation level is read committed. This is the default behavior.
Pdo\Firebird::REPEATABLE_READFlag denoting the ANSI transaction isolation level is repeatable read. This corresponds to Firebird's "snapshot" isolation level.
Pdo\Firebird::SERIALIZABLEFlag denoting the ANSI transaction isolation level is serializable. This corresponds to Firebird's "snapshot table stability" isolation level.
Pdo\Firebird::WRITABLE_TRANSACTIONBoolean attribute used to toggle the transaction access mode between
READ ONLYandREAD WRITE. By default, it is true indicatingREAD WRITE.
Firebird