summaryrefslogtreecommitdiff
path: root/drivers/adodb-oci8.inc.php
AgeCommit message (Collapse)AuthorFilesLines
2015-11-28Bump version to 5.21devDamien Regad1-1/+1
2015-11-28Bump version to 5.20.0v5.20.0Damien Regad1-1/+1
2015-11-26Adjust header comment blocksDamien Regad1-1/+3
- running SED script - manual adjustments for files not processed by regex
2015-08-11Fix#139: Remove PHP 4 ConstructorsValentin Sheyretski1-3/+3
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
2015-06-25Move _updatefields() method to ADORecordSetDamien Regad1-40/+0
Currently, this method only exists in postgres7, oci8 and derived drivers. Moving it to the base class will enable reuse by other drivers that need the functionality.
2015-06-25oci8: driver honors ADODB_ASSOC_CASE when fetching fieldsDamien Regad1-1/+46
This allows use of lowercase field names when executing queries in ADODB_FETCH_ASSOC fetch mode. The _updatefields() method was moved from oci8po to parent oci8 driver. - code was simplified - logic to determine if the operating in associative mode was moved from the callers to the method itself to reduce code duplication. - use of defined ADODB_ASSOC_CASE_* constants Fixes Github #21
2015-05-04Coding guidelines and whitespaceDamien Regad1-139/+342
2015-05-04Remove unused, useless and commented out codeDamien Regad1-69/+1
2014-05-13Fix indentationDamien Regad1-22/+25
2014-04-30Bump version to 5.20devDamien Regad1-1/+1
2014-04-23Bump version to 5.19v5.19Damien Regad1-1/+1
2014-03-04Fix Execute() ignoring param evaluating to falseDamien Regad1-1/+1
When ADOConnection->Execute is called with a single non-array parameter that evaluates to false, it ignores the parameter. Fixed by doing a strict-type comparison. Note that single boolean "false" parameter needs to be passed in as array(false). Reported by Alejandro Vásquez Fixes sourceforge patch #32
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.
2014-01-14Whitespace and PHPDocDamien Regad1-289/+285
2014-01-14oci8 MetaType and MetaForeignKeys argument count are now strict-standards ↵Mark Newnham1-4/+21
compliant
2013-08-28oci8->Execute: if $inputarr is scalar, make it an arrayDamien Regad1-2/+2
2013-08-05Reorg: ADOdb5 (master) branchDamien Regad1-0/+1656
- Move all files in adodb5/ to root - Remove adodb-for-php4/ directory