summaryrefslogtreecommitdiff
path: root/perf
AgeCommit message (Collapse)AuthorFilesLines
2015-11-28Bump version to 5.20.0v5.20.0Damien Regad7-7/+7
2015-11-26Adjust header comment blocksDamien Regad7-7/+21
- running SED script - manual adjustments for files not processed by regex
2015-08-11Fix#139: Remove PHP 4 ConstructorsValentin Sheyretski7-7/+7
This is the original commit from @valioz, rebased on latest master Signed-off-by: Damien Regad <dregad@mantisbt.org> Conflicts: drivers/adodb-db2ora.inc.php drivers/adodb-mssqlpo.inc.php drivers/adodb-odbc_oracle.inc.php
2014-04-30Bump version to 5.20devDamien Regad7-7/+7
2014-04-23Bump version to 5.19v5.19Damien Regad7-7/+7
2014-02-24Remove closing php tagDamien Regad7-9/+0
http://php.net/manual/en/language.basic-syntax.phptags.php
2014-01-21Bump version to 5.19devDamien Regad7-7/+7
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-22'str' not a valid phpdoc type definition keywordDamien Regad1-2/+2
2013-08-13Method declaration did not match parent::TablesMark Newnham1-3/+8
Was throwing error with E_STRICT. Fixes #1
2013-08-09Various MSSQL fixesMark Newnham1-1/+1
Contact the commit's author directly for all comments/fixes. General ======= - The driver is qualified to run on Server 2005, 2008 and 2012. - At startup, the driver identifies the SQL Server version, which allows it to invisibly take advantage of new features available in SQL server 2012. - It will not run on SQL Server 2000, although I'm sure it would be easy enough to fix. - It includes all patches to the known bugs that I can find on the phplens forum. - Much of the debugging has been removed, as this impeded program debugging when used with FastCGI - Some fixes are my own versions of those reported on the phplens boards drivers/adodb-mssqlnative.inc ============================= Changed mapping of bigint from I to I8 MetaColumns() -------------- Missing MetaColumns function, re-introduced, Produces an extended list of 10 field attributes, including auto-increment, nullable GenID() / CreateSequence() -------------------------- - On Server 2008 and lower, uses the historical sequence emulation. - On Server 2012. Uses the newly introduced Create Sequence statement. FetchField() ------------ This follows the method used in the oracle driver and caches the metadata at initialisation, which helps performance. datadict/datadict-mssqlnative.inc ================================= Missing file reintroduced, to support SQL Server format datadict functions perf/perf-mssqlnative.inc ========================= Tables() -------- Arguments to the Tables() function declared incorrectly
2013-08-05Reorg: ADOdb5 (master) branchDamien Regad7-0/+1670
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory