PHP Velho Oeste 2024

PostgreSQL Functions (PDO_PGSQL)

Introducere

PDO_PGSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to PostgreSQL databases.

Tipurile resurselor

This extension defines a stream resource returned by PDO::pgsqlLOBOpen().

Instalarea

Utilizați --with-pdo-pgsql[=DIR] pentru a instala extensia PDO PostgreSQL, unde parametrul opțional [=DIR] este directorul de bază al instalării PostgreSQL, sau calea către pg_config.

$ ./configure --with-pdo-pgsql

Cuprins

add a note add a note

User Contributed Notes 1 note

up
-21
rtroy at sciencetools dot com
2 years ago
On Fedora, install the PostgreSql PDO with yum or dnf:

   $ dnf install php-pgsql php-pdo_pgsql
To Top