summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-05-12Fix version match regexDamien Regad2-1/+2
There was a small mistake in the version matching regex introduced in commit 30c21280a48680c079f825af6583793928d65cf5, causing the function to trigger a system notice and only return 'V' instead of the actual version number. Fixes #16
2014-05-12mssqlnative: replace error_log() calls with ADOConnection::outp()Damien Regad2-27/+28
Fixes #12
2014-05-12WhitespaceDamien Regad1-14/+14
2014-05-12Fix AutoExecute behavior with empty result setDamien Regad2-25/+25
Pull request #15, issue #13
2014-05-07Update changelogDamien Regad1-0/+1
2014-05-07WhitespaceDamien Regad1-13/+13
2014-05-07Use constants in switch statementDamien Regad1-3/+3
2014-05-07AutoExecute does not respect empty ResultSet in case of UpdateDamien Regad1-3/+6
Fixes #13
2014-05-07Simplify code to determine AutoExecute's return valueDamien Regad1-4/+1
2014-05-07Remove useless $false variableDamien Regad1-6/+5
2014-04-30Add phpDocDamien Regad1-0/+3
2014-04-30Simplify SQL in postgres7 MetaForeignKeysDamien Regad1-41/+22
The original SQL from William Kolodny [William.Kolodny#gt-t.net] was very complex with multiple sub-select statements. Through use of regexp_replace() instead of split_part(), we now have only a single subquery. Removed obsolete comment.
2014-04-30Reformat SQL statementsDamien Regad1-81/+117
2014-04-30WhitespaceDamien Regad2-41/+41
2014-04-30memcache: include_once() to avoid error with PHPUnitDamien Regad2-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-30Bump version to 5.20devDamien Regad134-135/+137
2014-04-30buildrelease.py: don't copy the main README fileDamien Regad1-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-30buildrelease.py: script output fixesDamien Regad1-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-30buildrelease.py: fix origin repository pathDamien Regad1-1/+1
There was extra text at the end causing git clone to fail.
2014-04-30buildrelease.py: use git root instead of cwd if no fresh repoDamien Regad1-1/+1
This way the script works even if called from a subdirectory of the repository.
2014-04-30uploadrelease.py: add documentation uploadDamien Regad2-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-30New uploadrelease.py scriptDamien Regad1-0/+99
The script copies release files as prepared by buildrelease.py and upload them to Sourceforge
2014-04-30buildrelease.py: copy README file to release dirDamien Regad1-0/+3
2014-04-30buildrelease.py: use .tar.gz instead of .tgz extensionDamien Regad1-1/+3
2014-04-23Bump version to 5.19v5.19Damien Regad134-136/+136
2014-04-22Sybase fixesDamien Regad2-1/+16
Thanks to Péter Hadadi
2014-04-22Update changelogDamien Regad1-0/+2
2014-04-22Sybase: fix null values returned with ASSOC fetch modeHadadi Péter1-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-22Sybase: allow connection on custom portHadadi Péter1-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-20Fix outdated references to readme.htmDamien Regad2-2/+2
2014-04-20Remove old, redundant readme.htmDamien Regad1-68/+0
2014-04-20Revise readme fileDamien Regad1-27/+54
- use Markdown formatting - merge info from docs/readme.htm - Github reference for issues/feature requests
2014-04-20Rename readme fileDamien Regad1-0/+0
2014-04-20PostgreSQL fixesDamien Regad8-218/+233
- Insert_ID now relies on lastval() - Change default driver from 7 to 8 Also includes modifications to test script.
2014-04-16Postgres tests: added serial columnDamien Regad1-3/+6
This is a workaround to prevent tests from failing with the new _insertid() method relying on lastval() instead of OID.
2014-04-16Postgres tests: fix to_char() call for date testsDamien Regad1-1/+6
Added TIMESTAMP type cast
2014-04-16Update changelogDamien Regad1-0/+2
2014-04-16Change default postgres driver from 7 to 8Damien Regad1-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-16Define postgres8 driver classDamien Regad3-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-16Reformat switch statement for better readabilityDamien Regad1-2/+9
2014-04-16PHPdoc for _insertid() functionDamien Regad1-2/+10
2014-04-16Postgres: use lastval() to retrieve last insert idDamien Regad1-8/+3
Reverting change from d01454c0bf608ecd6625ccd9d968d45af7adac4c which introduced a regression. Fixes #8
2014-04-16postgres driver classes now use unified constructorDamien Regad3-25/+13
2014-04-16ADOConnection is now an abstract classDamien Regad1-10/+1
2014-04-16Whitespace and commentsDamien Regad2-159/+156
2014-04-16Fix Postgres error messages mapping to ADOdb error codesDamien Regad2-20/+21
Added 'm' (multiline) flag to preg_match()
2014-04-15Minor fixes and adjustments to test suiteDamien Regad2-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-15Fix version match regex to include suffixDamien Regad2-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-07Update version script now processes Change LogDamien Regad1-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-07Revise index page for http://adodb.sourceforge.neDamien Regad4-0/+349