summaryrefslogtreecommitdiff
path: root/adodb-loadbalancer.inc.php
AgeCommit message (Collapse)AuthorFilesLines
2020-12-20Bump version to 5.21.0-beta.1v5.21.0-beta.1Damien Regad1-1/+1
2020-12-19adodb.org is now served over SSLDamien Regad1-1/+1
Change web site references from http://adodb.org to https.
2020-01-25More whitespace, break long linesDamien Regad1-118/+154
2020-01-25Logical operators: use &&,|| instead of AND,ORDamien Regad1-5/+5
2020-01-25Various whitespace fixesDamien Regad1-178/+181
2020-01-25Missing return statementDamien Regad1-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-25Missing `new` keyword when throwing ExceptionDamien Regad1-1/+1
2020-01-25Remove unreachable codeDamien Regad1-4/+0
The return statements are preceded by a throw, so they will never be executed.
2020-01-25Various PHPDoc fixesDamien Regad1-11/+13
2020-01-25File header PHPDoc blockDamien Regad1-19/+24
2020-01-25Fix coding style.mike.benoit1-2/+2
2020-01-25Fix bug with __set() not actually setting the property and not doing it on ↵mike.benoit1-1/+5
all connection objects either.
2020-01-25Remove unused function argument.mike.benoit1-1/+1
2020-01-25Synchronize last few years of bug fixes and improvements.mike.benoit1-49/+95
2020-01-25Make a public rather than protected variable, so it can be properly set by ↵mike.benoit1-5/+6
outside code.
2020-01-25Replace 'master' with 'write' and 'slave' with 'readonly' to be more ↵mike.benoit1-40/+41
politically correct.
2020-01-25Reformat to strict PSR-2 style.mike.benoit1-553/+575
2020-01-25Few more minor cleanups.mike.benoit1-5/+5
2020-01-25Cleanup code, make proper docblocks, and begin switch to PSR-2 standard.mike.benoit1-76/+281
2020-01-25Improve query routing to master when its non-readonlymike.benoit1-2/+18
2020-01-25Fix code style.mike.benoit1-11/+11
2020-01-25Load balancer/query read/write splitting...mike.benoit1-0/+437