| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-01-24 | metaIndexes does not return primary key correctly, see #656 (#660) | Mark Newnham | 1 | -8/+72 | |
| The primary key parameter was reversed . In addition, the method tried to obtain primary key information from the sqlite_master table, instead of the pragma (cherry picked from commit 45a1d6a567727a846fe2fa218c3f77dbc77464fc) | |||||
| 2021-01-02 | Merge branch 'hotfix/5.20' into release/5.21 | Damien Regad | 1 | -3/+3 | |
| Conflicts: drivers/adodb-postgres64.inc.php | |||||
| 2021-01-02 | pgsql: fix deprecated function aliases | Damien Regad | 1 | -4/+4 | |
| Fixes #667 | |||||
| 2020-12-20 | Replace adodb_str_replace() calls with str_replace() | peterdd | 3 | -5/+5 | |
| Fixes #646 | |||||
| 2020-12-20 | Bump version to 5.21.0-beta.1v5.21.0-beta.1 | Damien Regad | 59 | -59/+59 | |
| 2020-12-19 | adodb.org is now served over SSL | Damien Regad | 36 | -36/+36 | |
| Change web site references from http://adodb.org to https. | |||||
| 2020-12-16 | Merge branch 'hotfix/5.20' (v5.20.19) | Damien Regad | 1 | -3/+23 | |
| Note on merge conflict in adodb.inc.php: At line 5133, parse_url() is called with `@` operator in the hotfix/5.20 branch (commit 2026e66e86f35995eee32557c2f83f1d539ca9c7) whereas the same change in the master branch (commit c1a6794ece2b02c2a5d238159ae85da3cbd6d) is without it. Code was kept as it is in master. # Conflicts: # adodb-lib.inc.php # adodb.inc.php # drivers/adodb-mssqlnative.inc.php # drivers/adodb-mysqli.inc.php # drivers/adodb-pdo.inc.php | |||||
| 2020-12-16 | Reset version to avoid merge conflicts | Damien Regad | 56 | -56/+56 | |
| 2020-12-14 | Bump version to 5.20.19 | Mark Newnham | 56 | -56/+56 | |
| 2020-12-12 | Mysqli metacolumns (#653) | Mark Newnham | 1 | -0/+20 | |
| * Add support for MySQL Version 8. See #642 The metacolumns function returns the incorrect type for unsigned integers because it doesn't include the length in MySQL 8 * Metacolumns returns wrong type for integer fields in Mysql 8 #642 | |||||
| 2020-12-11 | @mnewnham Add support for specific SQL Server connection port. See #624 … | Mark Newnham | 1 | -1/+8 | |
| Enhancement allows use of a specfic database connection port | |||||
| 2020-12-11 | Add support for specific SQL Server connection port. See #624 | Mark Newnham | 1 | -0/+7 | |
| Enhancement allows use of a specfic database connection port | |||||
| 2020-12-06 | Removed references to phplens.com, see #564 | Mark Newnham | 5 | -7/+7 | |
| 2020-12-06 | Removed hotlinks to PHPlens see #564 | Mark Newnham | 6 | -8/+8 | |
| Site no longer active | |||||
| 2020-12-06 | Adds support for PDO Constructor parameters see #650 | Mark Newnham | 1 | -2/+17 | |
| The PDO driver now supports persistent connections via the **pconnect()** method as well as other constuctor options via the **pdoOptions** class variable. See the ADOdb PDO documentation for more information. | |||||
| 2020-12-06 | Adds support for PDO Constructor parameters see #650 | Mark Newnham | 1 | -1/+17 | |
| The PDO driver now supports persistent connections via the **pconnect()** method as well as other constuctor options via the **pdoOptions** class variable. See the ADOdb PDO documentation for more information. | |||||
| 2020-12-03 | PHP7.4 requires definition of variable see #637 | Mark Newnham | 1 | -2/+4 | |
| PHP7.4 requires definition of variable before accessing array offsets | |||||
| 2020-12-03 | PHP7.4 requires definition of variable see #637 | Mark Newnham | 1 | -2/+4 | |
| PHP7.4 requires definition of variable before accessing array offset | |||||
| 2020-08-02 | Merge branch 'hotfix/5.20' (v5.20.18) | Damien Regad | 1 | -5/+1 | |
| # Conflicts: # docs/changelog.md # drivers/adodb-mssqlnative.inc.php | |||||
| 2020-08-02 | Reset version to avoid merge conflicts | Damien Regad | 56 | -56/+56 | |
| 2020-06-28 | Bump Versionv5.20.18 | Mark Newnham | 56 | -56/+56 | |
| 2020-05-31 | Retrieve error messages early before connection close #614 | Mark Newnham | 1 | -0/+6 | |
| Error messages from last error are lost if the connection is closed before retrieval | |||||
| 2020-05-31 | Retrieve error messages early before connection close #614 | Mark Newnham | 1 | -1/+13 | |
| Error messages from last error are lost if the connection is closed before retrieval | |||||
| 2020-03-31 | Bump version to 5.20.17v5.20.17 | Damien Regad | 56 | -56/+56 | |
| 2020-03-30 | PHP7.4 throws error at uninitialized array, #608 | Mark Newnham | 1 | -1/+8 | |
| method Fields() accessed an unitialized array, that was not trapped in versions of PHP prior to 7.4. method now checks to see if array is initialized. | |||||
| 2020-03-30 | PHP7.4 throws error at uninitialized array, #608 | Mark Newnham | 1 | -1/+7 | |
| method Fields() accessed an unitialized array, that was not trapped in versions of PHP prior to 7.4. method now checks to see if array is initialized. | |||||
| 2020-01-25 | pgsql: fix param number reset with param(false) | Damien Regad | 1 | -3/+3 | |
| Prior to this, calling $db->param(false) would reset the parameter number to 1 instead of 0, causing the next param() call to return `$2` instead of the expected `$1`. Fixes #380 | |||||
| 2020-01-24 | Removed unused var $_hasOciFetchStatement | Damien Regad | 1 | -1/+0 | |
| 2020-01-24 | Remove useless var $_has_stupid_odbc_fetch_api_change | Damien Regad | 4 | -25/+2 | |
| The variable is always true, so all tests referencing it can be removed, as well as the property itself, in the Access, ADS, ODBC and ODBC_db2 drivers. | |||||
| 2020-01-24 | ADS: fix indentation and coding guidelines | Damien Regad | 1 | -593/+661 | |
| 2020-01-24 | Remove useless var $_haserrorfunctions | Damien Regad | 3 | -70/+31 | |
| Without the PHP version check, the variable is always true, so all tests referencing it can be removed, as well as the property itself, in the ADS, ODBC and PDO drivers. | |||||
| 2020-01-24 | Remove PHP>=4.1 check in mssql/mssqlpo drivers | Damien Regad | 2 | -20/+1 | |
| Remove $_has_mssql_init property, which is no longer useful. The ADODB_mssql class' constructor has been removed too, as it was no longer doing anything. | |||||
| 2020-01-24 | Remove PHP 5 check in ADO | Damien Regad | 2 | -4/+2 | |
| 2020-01-24 | Remove useless ADODB_oci8 constructor | Damien Regad | 1 | -7/+0 | |
| 2020-01-24 | Removed PHP>=5.0 check in ADODB_mysqli::qstr() | Mark Newnham | 1 | -1/+1 | |
| 2020-01-24 | Removed PHP5.1 check in ADODB_postgres7::_construct() | Mark Newnham | 1 | -1/+1 | |
| 2020-01-24 | Removed PHP>5.2 check in ADODB_mysqli::_connect() | Mark Newnham | 1 | -1/+3 | |
| 2020-01-24 | Removed PHP>5.3 test for call_user_func_array() | Mark Newnham | 1 | -4/+1 | |
| 2020-01-24 | Always return affected rows | Mark Newnham | 2 | -6/+2 | |
| 2020-01-24 | Remove PHP4 code checks | Mark Newnham | 1 | -135/+3 | |
| Driver incorrectly used mssql functionality, and has never been used with php4 anyway. Now reverts to parent method for unixdate/unixtime. | |||||
| 2020-01-24 | Remove the pre-PHP5 date/time management feature | Mark Newnham | 1 | -131/+3 | |
| 2020-01-24 | Remove unneeded PHP4 checks | Mark Newnham | 2 | -10/+14 | |
| 2020-01-24 | Removed php5/php4 based conditionals | Mark Newnham | 1 | -19/+14 | |
| 2020-01-24 | remove PHP4 depencency | Mark Newnham | 1 | -1/+1 | |
| 2020-01-24 | Removed cascading version 5 dependency | Mark Newnham | 1 | -8/+4 | |
| 2020-01-24 | Removed PHP Cascading Version based connection statement | Mark Newnham | 2 | -23/+31 | |
| 2020-01-24 | removed PHP4 dependency tests | Mark Newnham | 4 | -23/+10 | |
| 2020-01-24 | Remove unneeded PHP5 test | Mark Newnham | 1 | -8/+2 | |
| 2020-01-24 | remove unneeded PHP4 test | Mark Newnham | 1 | -36/+16 | |
| 2020-01-24 | Removed check for PHP > 5.0 | Mark Newnham | 1 | -7/+2 | |
