summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/oci_statement.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Remove some compilation warnings:Christopher Jones2013-08-201-0/+6
| | | | | 'unused variable' and 'enumeration value not handled in switch'
* Fixed bug #57702 (Multi-row BLOB fetches)Xinchen Hui2013-01-151-2/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Fixed bug #63236 (Executable permission on various source files)Xinchen Hui2012-10-091-0/+0
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* - Fixed bug #39199 (Cannot load Lob data with more than 4000 bytes on ORACLE 10)Felipe Pena2010-12-101-5/+13
| | | | | patch by: spatar at mail dot nnov dot ru
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Segfault when an exception is thrown on persistent connectionsPierre Joye2008-07-221-1/+1
|
* - SAB: #41996, Problem accessing Oracle ROWID (Martin Jansen)Pierre Joye2008-07-211-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Add $dbh->getAttribute() support for ATTR_SERVER_VERSION, ATTR_SERVER_INFO, ↵Christopher Jones2007-08-311-5/+5
| | | | ATTR_CLIENT_VERSION, ATTR_AUTOCOMMIT. Sync WS between PHP 5 & 6 and add a couple of casts.
* Fix Bug #11345 Seg fault after NLS environment initialization errorChristopher Jones2007-06-301-33/+37
|
* fix leakAntony Dovgal2007-01-261-1/+18
| | | | | readuce size of the buffer to prevent ORA-01461
* fix PECL bug #7295 (ORA-01405: fetched column value is NULL on LOB fields)Antony Dovgal2007-01-221-1/+2
|
* Fixed compiler warningsIlia Alshanetsky2007-01-011-1/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFHAntony Dovgal2006-12-271-1/+1
|
* Added support for BINARY_DOUBLE and BINARY_FLOAT to PDO_OCI and OCI8 (also ↵Antony Dovgal2006-03-181-0/+4
| | | | fixes bug #36764)
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixes PECL Bug #5868; wrong iters count for OCIStmtExecuteWez Furlong2005-11-041-1/+1
|
* Fix ZTS buildEdin Kadribasic2005-11-011-0/+1
|
* hrmm, typo fix.Wez Furlong2005-11-011-1/+1
|
* Closes PECL Bug #5722; BLOB support was half-baked.Wez Furlong2005-10-311-27/+254
|
* MFH: quick fix for #35003 (Warning: PDOStatement::fetch(): column 0 data was ↵Antony Dovgal2005-10-281-0/+13
| | | | too large for buffer and was)
* fix TSRM buildAntony Dovgal2005-10-281-1/+1
|
* refs #34630.Wez Furlong2005-09-251-1/+17
| | | | | Real lob support for oracle will appear after the PHP 5.1 release.
* improve handling of bound input parameters when no maximal length value is set;Wez Furlong2005-07-121-16/+23
| | | | | | | | | | default to 4000 as the maximal length, which is the biggest size possible without using a LONG type (if you specify anything larger than this, you'll end up with ORA-1461). Don't assume that all parameters were output parameters after execution, as this would clobber the input values when used in a loop.
* free parameter when requested to do soAntony Dovgal2005-07-071-0/+7
|
* add markers for nice vim foldingsAntony Dovgal2005-02-141-20/+16
|
* free errmsg & prevent leaksAntony Dovgal2005-02-141-0/+5
|
* update for input/output parameters changeWez Furlong2005-02-071-1/+1
|
* update for api changesWez Furlong2005-02-061-1/+1
|
* Fix segfault on stmt close.Wez Furlong2005-01-201-3/+18
| | | | | Make scrollable cursors actually work
* Generate pdo_oci.dll for modern SDKs and pdo_oci8.dll for ye-olde oci805 libs.Wez Furlong2005-01-201-1/+1
| | | | | | | | | | | | | I'm told that oci805 is required for connectivity to oci805 servers, which are no longer supported in more recent SDK releases. Edin: please grab: http://download.oracle.com/otn/nt/instantclient/instantclient-basic-win32-10.1.0.3-20050113.zip http://download.oracle.com/otn/nt/instantclient/instantclient-sdk-win32-10.1.0.3-20050113.zip and extract them under php_build, so that you end up with php_build/instantclient10_1
* Add support for scrollable cursors.Wez Furlong2005-01-121-3/+19
| | | | | Enable PDO_ATTR_PREFETCH and default it to 100Kb of prefetch buffer.
* Errr... fix leakWez Furlong2004-12-211-2/+2
|
* Fix some misbehaving pecls (my own included ;-)Wez Furlong2004-07-311-0/+1
|
* fix for empty_string changes.Wez Furlong2004-07-191-4/+12
| | | | | Don't forget to allocate bytes for NUL terminators
* fix couple of memory leaksAntony Dovgal2004-05-251-0/+13
|
* re-jig error handling, and make it co-operate with the PDO error handling ↵Wez Furlong2004-05-201-8/+5
| | | | | | | system. Implement $dbh->exec() for OCI.
* Allow PDO OCI to build under unix.Wez Furlong2004-05-171-2/+2
| | | | | Don't build by default under win32.
* OCI driver for PDO, supporting bound input and output parameters.Wez Furlong2004-05-171-0/+410
Will not build under unix yet.