PHP 8.4.24 Released!

Firebird PDO Driver (PDO_FIREBIRD)

Вступ

PDO_FIREBIRD is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to Firebird database.

Встановлення

Use --with-pdo-firebird[=DIR] to install the PDO Firebird extension, where the optional [=DIR] is the Firebird base install directory.

$ ./configure --with-pdo-firebird

As of PHP 8.4.0, this extension uses Firebird C++ APIs and therefore requires a C++ compiler, and must be built against fbclient 3.0 or higher.

Попередньо визначені константи

Константи, описані нижче — визначені цим драйвером, тож доступні, коли розширення скомпільовано як частина PHP або динамічно підключене під час виконання. До того ж, ці спеціальні константи драйвера потрібно використовувати тільки для нього. Використання спеціальних атрибутів драйвера з іншим драйвером може спричинити неочікувану поведінку. Методом PDO::getAttribute() можна отримати атрибут PDO_ATTR_DRIVER_NAME, щоб перевірити сумісність коду для поточного драйвера з іншими драйверами.

Увага

The constants listed below have been DEPRECATED as of PHP 8.5.0. Use the corresponding Pdo\Firebird constants instead.

PDO::FB_ATTR_DATE_FORMAT (int)
Псевдонім Pdo\Firebird::ATTR_DATE_FORMAT.
PDO::FB_ATTR_TIME_FORMAT (int)
Псевдонім Pdo\Firebird::ATTR_TIME_FORMAT.
PDO::FB_ATTR_TIMESTAMP_FORMAT (int)
Псевдонім Pdo\Firebird::ATTR_TIMESTAMP_FORMAT.

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top