Firebird PDO Driver (PDO_FIREBIRD)

Introduzione

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

Installazione

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

Costanti predefinite

Le costanti qui sotto sono definite da questo driver, e sono disponibili solo quanto l'estensione è stata o compilata nel PHP o caricata dinamicamente a runtime. In aggiunta, queste costanti specifiche del driver dovrebbero essere usate solo se si sta usando il driver stesso. Utilizzare attributi specifici di mysql con il driver postgres può portare a risultati imprevedibili. PDO::getAttribute() può essere usata per ottenere l'attributo PDO_ATTR_DRIVER_NAME per identificare il driver, se il codice può funzionare con driver differenti.

Avviso

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)
Alias di Pdo\Firebird::ATTR_DATE_FORMAT.
PDO::FB_ATTR_TIME_FORMAT (int)
Alias di Pdo\Firebird::ATTR_TIME_FORMAT.
PDO::FB_ATTR_TIMESTAMP_FORMAT (int)
Alias di Pdo\Firebird::ATTR_TIMESTAMP_FORMAT.

Indice dei contenuti

add a note

User Contributed Notes

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