| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2023-04-15 | Minor fixes to load balancer for PHP 8.2+ warnings | Mike-Benoit | 1 | -6/+6 | |
| Fixes #951 Signed-off-by: Damien Regad <dregad@mantisbt.org> Updated Changelog and added PR reference in commit message, back-ported to hotfix/5.22 branch. | |||||
| 2022-01-08 | Coding guidelines | Damien Regad | 1 | -37/+39 | |
| 2022-01-08 | Rename _getConnection() to getConnectionById() | Mike-Benoit | 1 | -4/+4 | |
| Following convention for public method. Since there was already a getConnection() function, this probably makes more sense anyways. Issue #784 | |||||
| 2022-01-08 | Support calling a function upon load balancer connection | Mike-Benoit | 1 | -4/+42 | |
| For things like determining replication lag and ignoring the connection if its out of spec. - Make a few methods public so they can be called outside the class, to better assist with unit tests and advanced use cases. - Don't make a connection to the database when calls to 'setcustommetatype' are made, as a connection is not needed for those calls of course. - If no connection can be established, throw exception. Fixes #784 | |||||
| 2021-08-17 | Redo Merge branch 'hotfix/5.21' Standardized file headers | Damien Regad | 1 | -12/+12 | |
| Try to do it right this time... # Conflicts: # adodb-memcache.lib.inc.php Fixes #751 | |||||
| 2021-08-17 | Reset version to avoid merge conflicts | Damien Regad | 1 | -1/+1 | |
| Fixes #751 | |||||
| 2021-08-17 | Revert changes since Standardized file headers merge | Damien Regad | 1 | -12/+12 | |
| 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 | |||||
| 2021-08-14 | Standard file header: / | Damien Regad | 1 | -12/+12 | |
| 2021-03-08 | Bump version to 5.21.1-dev | Damien Regad | 1 | -1/+1 | |
| 2021-02-27 | Bump version to 5.21.0v5.21.0 | Damien Regad | 1 | -1/+1 | |
| 2021-02-02 | Bump version to 5.21.0-rc.1v5.21.0-rc.1 | Damien Regad | 1 | -1/+1 | |
| 2020-12-20 | Bump version to 5.21.0-beta.1v5.21.0-beta.1 | Damien Regad | 1 | -1/+1 | |
| 2020-12-19 | adodb.org is now served over SSL | Damien Regad | 1 | -1/+1 | |
| Change web site references from http://adodb.org to https. | |||||
| 2020-01-25 | More whitespace, break long lines | Damien Regad | 1 | -118/+154 | |
| 2020-01-25 | Logical operators: use &&,|| instead of AND,OR | Damien Regad | 1 | -5/+5 | |
| 2020-01-25 | Various whitespace fixes | Damien Regad | 1 | -178/+181 | |
| 2020-01-25 | Missing return statement | Damien Regad | 1 | -2/+1 | |
| The function could reach its end without actually returning any value. Moving the `return false` statement out of the if/else block to ensure this does not happen. | |||||
| 2020-01-25 | Missing `new` keyword when throwing Exception | Damien Regad | 1 | -1/+1 | |
| 2020-01-25 | Remove unreachable code | Damien Regad | 1 | -4/+0 | |
| The return statements are preceded by a throw, so they will never be executed. | |||||
| 2020-01-25 | Various PHPDoc fixes | Damien Regad | 1 | -11/+13 | |
| 2020-01-25 | File header PHPDoc block | Damien Regad | 1 | -19/+24 | |
| 2020-01-25 | Fix coding style. | mike.benoit | 1 | -2/+2 | |
| 2020-01-25 | Fix bug with __set() not actually setting the property and not doing it on ↵ | mike.benoit | 1 | -1/+5 | |
| all connection objects either. | |||||
| 2020-01-25 | Remove unused function argument. | mike.benoit | 1 | -1/+1 | |
| 2020-01-25 | Synchronize last few years of bug fixes and improvements. | mike.benoit | 1 | -49/+95 | |
| 2020-01-25 | Make a public rather than protected variable, so it can be properly set by ↵ | mike.benoit | 1 | -5/+6 | |
| outside code. | |||||
| 2020-01-25 | Replace 'master' with 'write' and 'slave' with 'readonly' to be more ↵ | mike.benoit | 1 | -40/+41 | |
| politically correct. | |||||
| 2020-01-25 | Reformat to strict PSR-2 style. | mike.benoit | 1 | -553/+575 | |
| 2020-01-25 | Few more minor cleanups. | mike.benoit | 1 | -5/+5 | |
| 2020-01-25 | Cleanup code, make proper docblocks, and begin switch to PSR-2 standard. | mike.benoit | 1 | -76/+281 | |
| 2020-01-25 | Improve query routing to master when its non-readonly | mike.benoit | 1 | -2/+18 | |
| 2020-01-25 | Fix code style. | mike.benoit | 1 | -11/+11 | |
| 2020-01-25 | Load balancer/query read/write splitting... | mike.benoit | 1 | -0/+437 | |
