diff options
| author | Damien Regad <dregad@mantisbt.org> | 2025-09-15 18:15:23 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2025-09-15 18:15:23 +0200 |
| commit | 4cacd51045237191d07f98aa4d85f35647fc92e1 (patch) | |
| tree | 2cf56627fb88a4d615fd96d3ee88e6ca0a0e2358 /drivers | |
| parent | 559ad6133b7f6b84cb4374fb312514838a12126e (diff) | |
| download | adodb-4cacd51045237191d07f98aa4d85f35647fc92e1.tar.gz adodb-4cacd51045237191d07f98aa4d85f35647fc92e1.tar.bz2 adodb-4cacd51045237191d07f98aa4d85f35647fc92e1.zip | |
PDO Firebird driver extends ADODB_pdo_base
Previously, it inherited from ADODB_pdo, which caused Fatal error:
Uncaught Error: Call to undefined method ADODB_pdo_firebird::_init().
Fixes #1122
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/adodb-pdo_firebird.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/adodb-pdo_firebird.inc.php b/drivers/adodb-pdo_firebird.inc.php index f8847c3c..1ccbf01c 100644 --- a/drivers/adodb-pdo_firebird.inc.php +++ b/drivers/adodb-pdo_firebird.inc.php @@ -24,7 +24,7 @@ /** * Class ADODB_pdo_firebird */ -class ADODB_pdo_firebird extends ADODB_pdo +class ADODB_pdo_firebird extends ADODB_pdo_base { public $dialect = 3; public $metaTablesSQL = "select lower(rdb\$relation_name) from rdb\$relations where rdb\$relation_name not like 'RDB\$%'"; |
