PDO_PGSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to PostgreSQL databases.
This extension defines a stream resource returned by Pdo\Pgsql::lobOpen().
Use --with-pdo-pgsql[=DIR] to install
the PDO PostgreSQL extension, where the optional [=DIR]
is the PostgreSQL base install directory, or the path to pg_config.
$ ./configure --with-pdo-pgsql
下列常量由此驱动定义,且仅在扩展编译入 PHP
或在运行时动态载入时可用。另外,使用此驱动时,仅会使用这些驱动特定的常量。使用其他驱动的驱动特定的常量可能会导致不可预见的情况。如果代码可运行于多个驱动,PDO::getAttribute()
可被用于获取
PDO_ATTR_DRIVER_NAME
属性以检查驱动。
PDO::PGSQL_ATTR_DISABLE_PREPARES
(int)
Pdo\Pgsql::ATTR_DISABLE_PREPARES.
As of PHP 8.5.0, this constant is deprecated.
PDO::PGSQL_TRANSACTION_IDLE
(int)
Pdo\Pgsql::TRANSACTION_IDLE.
As of PHP 8.5.0, this constant is deprecated, as it has no effect.
PDO::PGSQL_TRANSACTION_ACTIVE
(int)
Pdo\Pgsql::TRANSACTION_ACTIVE.
As of PHP 8.5.0, this constant is deprecated, as it has no effect.
PDO::PGSQL_TRANSACTION_INTRANS
(int)
Pdo\Pgsql::TRANSACTION_INTRANS.
As of PHP 8.5.0, this constant is deprecated, as it has no effect.
PDO::PGSQL_TRANSACTION_INERROR
(int)
Pdo\Pgsql::TRANSACTION_INERROR.
As of PHP 8.5.0, this constant is deprecated, as it has no effect.
PDO::PGSQL_TRANSACTION_UNKNOWN
(int)
Pdo\Pgsql::TRANSACTION_UNKNOWN.
As of PHP 8.5.0, this constant is deprecated, as it has no effect.
注意:
byteacolumns are returned as stream resources. See Large Objects (LOBs) for how to read these values and how to bind data withPDO::PARAM_LOB.