| Age | Commit message (Collapse) | Author | Files | Lines |
|
# Conflicts:
# adodb-time.inc.php
# drivers/adodb-db2.inc.php
|
|
Non-canonical cast (integer) is deprecated, use the (int) cast instead
Global search and replace throughout the code base.
Fixes #1143
|
|
|
|
Update parent with parameter description.
|
|
|
|
Previously, it inherited from ADODB_pdo, which caused Fatal error:
Uncaught Error: Call to undefined method ADODB_pdo_firebird::_init().
Fixes #1122
|
|
|
|
- _init() did not actually initialize anything useful, as the
$pdoDriver property was not used anywhere.
- _affectedrows() was likely introduced by mistake (copy/paste error
when the driver was refactored in 2019), as it references Firebird
native (non-PDO) function fbird_affected_rows(), as discussed in
#935.
This fixes PHP 8.2 deprecation warnings due to undefined properties.
|
|
Try to do it right this time...
# Conflicts:
# adodb-memcache.lib.inc.php
Fixes #751
|
|
Fixes #751
|
|
The conflicts resolution applied when merging the Standardized file
headers (commit e9dcce3df24912ad869d0193f0b419f2309101fc) was seriously
messed up, actually overwriting a number of changes in the master
branch.
Rather than trying to go and fix things one by one which has a high risk
of messing things further, it's easier to redo the merge from a clean
slate, so this commit reverts the following:
- "Merge branch 'hotfix/5.21' Standardized file headers",
e9dcce3df24912ad869d0193f0b419f2309101fc
- "Merge tag 'v5.21.1'",
5f437df3104159d5d659f60e31bef8d33c34995f
- "Reset version to 5.22.0-dev"
af9234a525c3255af051a330164486d73be4c63a
- "Fix incorrect resolution of merge conflicts"
a6733f61b0165b366c8d2c70d9af82edc3881951.
- "Fix syntax error in toexport.inc.php"
20b01e83cb61b6b2460f64c7d1277c5f4cc28574.
Fixes #751
|
|
|
|
Ref: https://php.watch/versions/8.0/final-private-function#final-private
Fixes #711
|
|
|
|
|
|
|
|
|
|
Change web site references from http://adodb.org to https.
|
|
|
|
|
|
|
|
|
|
This first release of the pdo_firebird driver is known to have the
following limitations:
- Only supports dialect3
- Only tested with PHP7
- Only tested with Firebird 3
- function getRowAssoc() fails because PDO::firebird does not support
getColumnMeta()
- function moveFirst() currently fails for unknown reasons
Fixes #378
|