summaryrefslogtreecommitdiff
path: root/ext/oci8
Commit message (Collapse)AuthorAgeFilesLines
* hmm. this comma is supposed to be a semicolon.Antony Dovgal2004-04-261-1/+1
|
* add account names & emailsAntony Dovgal2004-03-241-4/+4
|
* "The Visa to Sibiria" (work in progress)Hartmut Holzgraefe2004-03-231-0/+85
| | | | | | | | | Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
* Wordsize fixesArd Biesheuvel2004-02-251-1/+1
|
* this should really fix compile failure with gcc 2.96Antony Dovgal2004-02-201-1/+1
|
* Fix compile failurefoobar2004-02-201-1/+1
|
* Only use Z_TYPE* with zvals..foobar2004-02-201-19/+20
|
* * email address updateStig Bakken2004-02-121-1/+1
|
* * update my email addressStig Bakken2004-02-121-1/+1
|
* fix bug #27149Antony Dovgal2004-02-051-2/+6
| | | | | (offset should start with 1)
* -remove obsolete typesAntony Dovgal2004-02-032-6/+14
| | | | | | -changes in config.m4 to make oci8 to compile with Oracle 10g (thanks to cjbj at hotmail dot com for reporting both problems)
* add missing alias for ocifreecursor()Antony Dovgal2004-02-021-1/+2
|
* fix yet another possible segfaultAntony Dovgal2004-02-021-0/+4
|
* two fixes:Antony Dovgal2004-01-281-2/+4
| | | | | | -oci_lob_load shouldn't reset LOB's length to zero -Oracle feels bad, but reports no error, when trying to erase LOB with offset bigger than LOB
* change to use different allocator (Sascha, thanks =) )Antony Dovgal2004-01-261-1/+1
|
* fix this annoying notice about limited rangeAntony Dovgal2004-01-261-1/+1
|
* improve debug messagesAntony Dovgal2004-01-261-17/+17
|
* oops =(Antony Dovgal2004-01-261-1/+1
| | | | | forgot these brackets..
* fix oci_field_type_raw's protoAntony Dovgal2004-01-261-2/+2
| | | | | oci_collection_element_get should return FALSE only if there is no such element and NULL, if it's null
* add collections support to win32 buildAntony Dovgal2004-01-221-0/+1
|
* add missing protosAntony Dovgal2004-01-221-19/+18
| | | | | and some minor changes
* MFBAntony Dovgal2004-01-221-3/+2
| | | | | oci_lob_save() should be removed indeed, but we're already in feature freeze =(
* *change constant name, coz it doesn't comply with othersAntony Dovgal2004-01-211-5/+25
| | | | | | | | *add constant's alias, coz others do have aliases *change protos (oops =)) *add notices to collection functions *change coll_element_get & coll_assign to inform user, that this type of element is not supported yet.
* fix potential segfault in oci_lob_write()Antony Dovgal2004-01-211-2/+3
| | | | | change oci_lob_trim() - truncate length should be 0 by default.
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-4/+4
|
* Add myself at last =)Antony Dovgal2004-01-161-1/+1
|
* Fix bug #26892, ORA-21301 in ocinewcollection() call.Antony Dovgal2004-01-151-2/+2
| | | | | pEnv should be initialized in object mode too.
* Fix typofoobar2004-01-152-2/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* glob-ify lib checks; this simplifies writing of config.w32 files a little.Wez Furlong2004-01-071-1/+3
|
* ws + csfoobar2004-01-022-1662/+1843
|
* another ZTS fixfoobar2004-01-021-0/+2
|
* fix ZTS buildfoobar2004-01-021-5/+6
|
* Fix the include path for Zendfoobar2003-12-301-4/+4
|
* workaround for possible ORA-22280 warning if buffers were not flushedAntony Dovgal2003-12-252-47/+94
|
* separate oci_lob_flush() to use it in oci_lob_append() etc. in the futureAntony Dovgal2003-12-241-21/+48
|
* add oci_fetch_assoc(), oci_fetch_object(), oci_fetch_array() & oci_fetch_row()Antony Dovgal2003-12-231-56/+162
| | | | | change ocifetchinto() to use php_oci_fetch_row()
* huge patchAntony Dovgal2003-12-231-292/+338
| | | | | | | change almost all func names to match naming conventions keep ocifetchinto & *buffering for awhile - they will be rewritten soon old names are kept as aliases
* do not delete connection ids, we need themAntony Dovgal2003-12-231-3/+0
|
* add tests to HEADAntony Dovgal2003-12-195-0/+109
|
* make these build with new win32 build system.Wez Furlong2003-12-191-0/+20
| | | | | mcve untested (I don't have those libs/headers)
* fix bug #26133 (thanks to Harald)Antony Dovgal2003-12-162-30/+56
| | | | | | | rename constant and add library check to config.m4 add info lines to see if Collection & Temp Lob support enabled or not add OCI_THREADED to use thread safe OCI mode with ZTS (should fix bug #26558)
* fix warning, concerned to second _oci_close_server() callAntony Dovgal2003-12-161-0/+2
|
* fix non-zts build errorsHarald Radi2003-12-161-6/+9
|
* @- fixed #20006, #22674 and #24531 (harald)Harald Radi2003-12-162-127/+156
| | | | | | | | @- added ZTS connection pooling support to the oci extension @ connections will now be pooled per process and not @ per thread anymore. the number of persistent and active @ connections is now also shown in the phpinfo() output (harald)
* add myselfHarald Radi2003-12-161-1/+1
|
* fix include pathHarald Radi2003-12-161-4/+4
|
* add new functions:Antony Dovgal2003-12-152-5/+1110
| | | | | | | | | | | | | | | | | | | | | | | ocitelllob(); [ OCI_Lob->tell(); ] - ftell(); analogue for Lobs ociwritelob(); [ OCI_Lob->write(); ] - fwrite(); analogue for Lobs ocitruncatelob(); [ OCI_Lob->truncate(); ] - ftruncate(); analogue for Lobs ocieraselob(); [ OCI_Lob->erase(); ] - erases specified part of a Lob (for BLOBs it means zero-filling, for CLOBs - space-filling) ociflushlob(); [ OCI_Lob->flush(); ] - flushes Lob buffer (if buffering was enabled before) ocisetbufferinglob(); [ OCI_Lob->setBuffering(); ] - turns on/off buffering for the current Lob ocigetbufferinglob(); [ OCI_Lob->getBuffering(); ] - gets buffering' current state ocirewindlob(); [ OCI_Lob->rewind(); ] - rewind(); analogue for Lobs ocireadlob(); [ OCI_Lob->read(); ] - fread(); analogue for Lobs ocieoflob(); [ OCI_Lob->eof(); ] - feof(); analogue for Lobs ociseeklob(); [ OCI_Lob->seek(); ] - fseek(); analogue for Lobs ocilobgetlength(); [ OCI_Lob->getLength(); ] - filesize(); analogue for Lobs ociappendlob(); - appends data from a Lob to another Lob ocicopylob(); - copies data from a Lob to another Lob ociisequallob(); - compares 2 Lobs and checks if they are equal TODO cleanup and other minor fixes
* WSSascha Schumann2003-11-061-2/+2
|