summaryrefslogtreecommitdiff
path: root/datadict
AgeCommit message (Collapse)AuthorFilesLines
2015-11-28Bump version to 5.20.0v5.20.0Damien Regad14-14/+14
2015-11-26Adjust header comment blocksDamien Regad14-14/+42
- running SED script - manual adjustments for files not processed by regex
2015-03-04postgres: Fix AlterColumnSQL when updating multiple columnsJouni Ahto1-1/+1
Prior to this, when argument $flds contained more than 1 column to modify, the loop was generating SQL like: ALTER TABLE sometable ALTER COLUMN col1 ... ALTER TABLE sometable ALTER COLUMN col1col2 ... ALTER TABLE sometable ALTER COLUMN col1col2col3 ... Fixes #72 Signed-off-by: Damien Regad <dregad@mantisbt.org>
2015-03-04oci8: fix broken quoting in tablesAndreas Fernandez1-0/+2
The methods "AddColumnSQL" and "AlterColumnSQL" did not quote the table name propery, resulting in broken ALTER TABLE statements. Fixes #67 Signed-off-by: Damien Regad <dregad@mantisbt.org>
2014-09-08Align method signatures to parent classAndreas Fernandez10-19/+19
Fixes #31 Changes to original commit: whitespace and updated changelog. Signed-off-by: Damien Regad <dregad@mantisbt.org>
2014-05-16Fix #18: PHP Strict Standards in oci8 datadictDamien Regad1-3/+3
Some methods' signature did not match the parent class
2014-04-30Bump version to 5.20devDamien Regad14-14/+14
2014-04-23Bump version to 5.19v5.19Damien Regad14-14/+14
2014-04-07oci8: fix ORA-24344 when creating sequence triggerDamien Regad1-1/+1
2014-02-24Remove closing php tagDamien Regad14-24/+0
http://php.net/manual/en/language.basic-syntax.phptags.php
2014-01-21Bump version to 5.19devDamien Regad14-14/+14
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-09-20PostgreSQL: AlterColumnSQL properly reset default for NULLDamien Regad1-1/+4
2013-09-20PostgreSQL: AlterColumnSQL don't remove default NULL valueDamien Regad1-1/+4
The preg_replace statement was doing a global replace of 'NULL' by '', ignoring the fact that a column can be 'DEFAULT NULL', causing the function to generate incorrect SQL.
2013-09-20Reduce number of string concatenationsDamien Regad1-11/+13
Simplify the code by setting $alter to include $colname
2013-09-20Reformat if statement with bracesDamien Regad1-2/+6
2013-09-19Whitespace fixesDamien Regad1-67/+66
2013-08-22'str' not a valid phpdoc type definition keywordDamien Regad1-5/+6
2013-08-22Number of arguments did not match parent functionMark Newnham1-1/+4
Causing error with E_STRICT. Fixes #2
2013-08-09Various MSSQL fixesMark Newnham1-20/+50
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 Regad14-0/+2624
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory