summaryrefslogtreecommitdiff
path: root/adodb-lib.inc.php
AgeCommit message (Collapse)AuthorFilesLines
2014-09-09Fix adodb_strip_order_by() for subqueries with order/limitMikeB1-2/+2
The original regex was causing sub-query with ORDER BY and LIMIT clauses to be stripped out, resulting in multiple rows being returned and causing a SQL error. Example queries that were failing: * SELECT name, ( SELECT id FROM tmp_table LIMIT 1 ) FROM table; * SELECT id FROM ( SELECT id FROM tmp_table LIMIT 1 ) AS table; Signed-off-by: Damien Regad <dregad@mantisbt.org>
2014-08-07Convert files from ISO-8859-1 encoding to UTF-8Damien Regad1-1/+1
Fixes #32
2014-04-30Bump version to 5.20devDamien Regad1-1/+1
2014-04-23Bump version to 5.19v5.19Damien Regad1-1/+1
2014-02-24Remove closing php tagDamien Regad1-2/+0
http://php.net/manual/en/language.basic-syntax.phptags.php
2014-02-24Remove obsolete commentDamien Regad1-2/+0
2014-02-24adodb-lib: Fix columns quoting bugDamien Regad1-3/+3
See https://sourceforge.net/p/adodb/bugs/127/
2014-01-21Fix 'LIMIT 1' clause in subquery gets stripped offDamien Regad1-5/+6
Implementing the patch submitted by Mike in http://phplens.com/lens/lensforum/msgs.php?id=17813
2014-01-21Bump version to 5.19devDamien Regad1-1/+1
Bumped 'dev' version allows users who rely on source code downloaded from the git repository rather than an official release tarball to reliably determine that they are running a development version of the library.
2013-08-05Reorg: ADOdb5 (master) branchDamien Regad1-0/+1209
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory