PHP Velho Oeste 2024

PostgreSQL 함수 (PDO_PGSQL)

소개

PDO_PGSQL은 PHP가 PostgreSQL 데이터베이스에 접근하기 위한 PHP 데이터 객체(PDO) 인터페이스를 구현한 드라이버입니다.

자원형

이 확장은 PDO::pgsqlLOBOpen()이 반환하는 스트림 리소스를 정의합니다.

설치

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

Table of Contents

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