| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-04-30 | memcache: include_once() to avoid error with PHPUnit | Damien Regad | 2 | -2/+2 | |
| PHPUnit 4.x+ used in conjunction with ADOdb memcache library causes a 'cannot redeclare _rs2serialize' error when including adodb-csv.inc.php. http://phplens.com/lens/lensforum/msgs.php?id=19489 | |||||
| 2014-04-30 | Bump version to 5.20dev | Damien Regad | 134 | -135/+137 | |
| 2014-04-30 | buildrelease.py: don't copy the main README file | Damien Regad | 1 | -3/+1 | |
| In past releases, John created a simple README file containing the change log for the version and uploaded that to Sourceforge. | |||||
| 2014-04-30 | buildrelease.py: script output fixes | Damien Regad | 1 | -2/+2 | |
| - print release path and not temp dir at end of process - files, not tarballs since we also copy docs and readme file now | |||||
| 2014-04-30 | buildrelease.py: fix origin repository path | Damien Regad | 1 | -1/+1 | |
| There was extra text at the end causing git clone to fail. | |||||
| 2014-04-30 | buildrelease.py: use git root instead of cwd if no fresh repo | Damien Regad | 1 | -1/+1 | |
| This way the script works even if called from a subdirectory of the repository. | |||||
| 2014-04-30 | uploadrelease.py: add documentation upload | Damien Regad | 2 | -17/+60 | |
| In addition to uploading release files to frs.sourceforge.net, the script also uploads documentation to web.sourceforge.net. One or the other can be skipped using the -f / -d flags respectively. | |||||
| 2014-04-30 | New uploadrelease.py script | Damien Regad | 1 | -0/+99 | |
| The script copies release files as prepared by buildrelease.py and upload them to Sourceforge | |||||
| 2014-04-30 | buildrelease.py: copy README file to release dir | Damien Regad | 1 | -0/+3 | |
| 2014-04-30 | buildrelease.py: use .tar.gz instead of .tgz extension | Damien Regad | 1 | -1/+3 | |
| 2014-04-23 | Bump version to 5.19v5.19 | Damien Regad | 134 | -136/+136 | |
| 2014-04-22 | Sybase fixes | Damien Regad | 2 | -1/+16 | |
| Thanks to Péter Hadadi | |||||
| 2014-04-22 | Update changelog | Damien Regad | 1 | -0/+2 | |
| 2014-04-22 | Sybase: fix null values returned with ASSOC fetch mode | Hadadi Péter | 1 | -1/+2 | |
| When selecting from a Sybase DB using ADODB_FETCH_ASSOC mode, all returned values will be NULL in the result set (fetch modes NUM and BOTH are ok). Fixes Github issue #10 Signed-off-by: Damien Regad <dregad@mantisbt.org> | |||||
| 2014-04-22 | Sybase: allow connection on custom port | Hadadi Péter | 1 | -0/+12 | |
| Minor changes to original patch (Whitespace, use // for comments) Fixes Github issue #9 Signed-off-by: Damien Regad <dregad@mantisbt.org> | |||||
| 2014-04-20 | Fix outdated references to readme.htm | Damien Regad | 2 | -2/+2 | |
| 2014-04-20 | Remove old, redundant readme.htm | Damien Regad | 1 | -68/+0 | |
| 2014-04-20 | Revise readme file | Damien Regad | 1 | -27/+54 | |
| - use Markdown formatting - merge info from docs/readme.htm - Github reference for issues/feature requests | |||||
| 2014-04-20 | Rename readme file | Damien Regad | 1 | -0/+0 | |
| 2014-04-20 | PostgreSQL fixes | Damien Regad | 8 | -218/+233 | |
| - Insert_ID now relies on lastval() - Change default driver from 7 to 8 Also includes modifications to test script. | |||||
| 2014-04-16 | Postgres tests: added serial column | Damien Regad | 1 | -3/+6 | |
| This is a workaround to prevent tests from failing with the new _insertid() method relying on lastval() instead of OID. | |||||
| 2014-04-16 | Postgres tests: fix to_char() call for date tests | Damien Regad | 1 | -1/+6 | |
| Added TIMESTAMP type cast | |||||
| 2014-04-16 | Update changelog | Damien Regad | 1 | -0/+2 | |
| 2014-04-16 | Change default postgres driver from 7 to 8 | Damien Regad | 1 | -1/+1 | |
| When using 'pgsql' or 'postgres', ADOdb now sets the class to postgres8 instead of postgres7. This is justified by PostgreSQL's versioning policy [1], as all 7.x releases are end-of-life since 2010 or before. 8.4 is still supported until July 2014. [1] http://www.postgresql.org/support/versioning/ | |||||
| 2014-04-16 | Define postgres8 driver class | Damien Regad | 3 | -24/+43 | |
| The _insertid() method introduced in postgres9 driver really belongs in postgres8, since OID field was actually removed in 8.1. This commit creates new postgres8 classes, moves the method from the '9' driver to the new ADODB_postgres8 class, and makes the '9' classes inherit from postgres8 instead of postgres7. | |||||
| 2014-04-16 | Reformat switch statement for better readability | Damien Regad | 1 | -2/+9 | |
| 2014-04-16 | PHPdoc for _insertid() function | Damien Regad | 1 | -2/+10 | |
| 2014-04-16 | Postgres: use lastval() to retrieve last insert id | Damien Regad | 1 | -8/+3 | |
| Reverting change from d01454c0bf608ecd6625ccd9d968d45af7adac4c which introduced a regression. Fixes #8 | |||||
| 2014-04-16 | postgres driver classes now use unified constructor | Damien Regad | 3 | -25/+13 | |
| 2014-04-16 | ADOConnection is now an abstract class | Damien Regad | 1 | -10/+1 | |
| 2014-04-16 | Whitespace and comments | Damien Regad | 2 | -159/+156 | |
| 2014-04-16 | Fix Postgres error messages mapping to ADOdb error codes | Damien Regad | 2 | -20/+21 | |
| Added 'm' (multiline) flag to preg_match() | |||||
| 2014-04-15 | Minor fixes and adjustments to test suite | Damien Regad | 2 | -8/+20 | |
| - rely on default time zone instead of setting it to Asia/Kuala_Lumpur - improve error message for PostgreSQL testing - cosmetic changes | |||||
| 2014-04-15 | Fix version match regex to include suffix | Damien Regad | 2 | -2/+2 | |
| The old regex in ADOConnection::Version only included the numeric part of the ADOdb version number. Now the suffix (dev|[1-z]) is also returned. The regex in updateversion.py has been updated to match. | |||||
| 2014-04-07 | Update version script now processes Change Log | Damien Regad | 1 | -0/+39 | |
| Will update the release date in the change log for a stable release version, or insert a new change log entry for dev releases. | |||||
| 2014-04-07 | Revise index page for http://adodb.sourceforge.ne | Damien Regad | 4 | -0/+349 | |
| 2014-04-07 | oci8: fix ORA-24344 when creating sequence trigger | Damien Regad | 2 | -1/+2 | |
| 2014-04-07 | Revise documentation section | Damien Regad | 1 | -7/+8 | |
| Reworded mention of obsolete docs | |||||
| 2014-04-07 | Fix links | Damien Regad | 1 | -77/+56 | |
| - Fix some broken links - Removing links to phplens.com for documentation where applicable, use local files instead | |||||
| 2014-04-07 | Added source code link | Damien Regad | 1 | -0/+1 | |
| 2014-04-07 | Support section | Damien Regad | 1 | -9/+12 | |
| 2014-04-07 | Remove ADOdb Lite reference | Damien Regad | 1 | -4/+1 | |
| 2014-04-07 | HTML layout | Damien Regad | 1 | -26/+36 | |
| 2014-04-07 | Layout of inline style | Damien Regad | 1 | -4/+9 | |
| 2014-04-07 | Remove references to obsolete 'extension' | Damien Regad | 1 | -7/+2 | |
| 2014-04-07 | Remove references to unmaintained Python library | Damien Regad | 1 | -13/+1 | |
| 2014-04-07 | Layout and CSS adjustments | Damien Regad | 1 | -13/+15 | |
| 2014-04-07 | Adding Sourceforge web site HTML pages | Damien Regad | 4 | -0/+368 | |
| Files from http://adodb.sourceforge.net | |||||
| 2014-03-29 | Update changelog | Damien Regad | 1 | -0/+1 | |
| 2014-03-26 | Fix syntax error in composer.json | Damien Regad | 1 | -1/+1 | |
