History log of /PHP-7.0/ext/oci8/oci8.c (Results 251 – 275 of 483)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# ad11617f 15-Jan-2004 foobar

Fix typo


Revision tags: php-4.3.5RC1
# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


# 0eead367 02-Jan-2004 foobar

ws + cs


# 2cf58713 02-Jan-2004 foobar

another ZTS fix


# 3c73c91e 02-Jan-2004 foobar

fix ZTS build


# 12c7ae9f 25-Dec-2003 Antony Dovgal

workaround for possible ORA-22280 warning if buffers were not flushed


# f95db00d 24-Dec-2003 Antony Dovgal

separate oci_lob_flush() to use it in oci_lob_append() etc. in the future


# 10722125 23-Dec-2003 Antony Dovgal

add oci_fetch_assoc(), oci_fetch_object(), oci_fetch_array() & oci_fetch_row()
change ocifetchinto() to use php_oci_fetch_row()


# 7aac9069 23-Dec-2003 Antony Dovgal

huge patch
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


# cf45beed 23-Dec-2003 Antony Dovgal

do not delete connection ids, we need them


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# c002553d 16-Dec-2003 Antony Dovgal

fix bug #26133 (thanks to Harald)
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 s

fix bug #26133 (thanks to Harald)
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)

show more ...


# c0e519e6 16-Dec-2003 Antony Dovgal

fix warning, concerned to second _oci_close_server() call


# e0a0e9d8 16-Dec-2003 Harald Radi

fix non-zts build errors


# 85b4b63a 16-Dec-2003 Harald Radi

@- fixed #20006, #22674 and #24531 (harald)
@- added ZTS connection pooling support to the oci extension
@ connections will now be pooled per process and not
@ per thread anymore. the n

@- fixed #20006, #22674 and #24531 (harald)
@- 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)

show more ...


# 18096396 15-Dec-2003 Antony Dovgal

add new functions:

ocitelllob(); [ OCI_Lob->tell(); ] - ftell(); analogue for Lobs
ociwritelob(); [ OCI_Lob->write(); ] - fwrite(); analogue for Lobs
ocitruncatelob(); [ OCI_Lob->tru

add new functions:

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

show more ...


# db562682 06-Nov-2003 Sascha Schumann

WS


# 5a32c21f 06-Nov-2003 Sascha Schumann

Fix a format string

Nuke a sprintf (slooow)

And embed the charset as part of the hashed details (persistent conn key),
because the function otherwise happily returns incompatibl

Fix a format string

Nuke a sprintf (slooow)

And embed the charset as part of the hashed details (persistent conn key),
because the function otherwise happily returns incompatible connections.
(e.g. US7ASCII vs. UTF8; the client-side charset is not alterable once a
connection has been established.)

show more ...


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 8767205a 31-Aug-2003 Zeev Suraski

Fix Win32 linkage problems


Revision tags: php-4.3.3, php-4.3.3RC4
# 9ac579c2 12-Aug-2003 Andrey Hristov

proto fixes(Mehdi Achour)


# 93bcd55e 12-Aug-2003 Ilia Alshanetsky

emalloc -> safe_emalloc


Revision tags: RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5
# 538d58dd 03-Aug-2003 Zeev Suraski

Use new infrastructure.

There are bound to be some messups, please report build/runtime bugs!


Revision tags: BEFORE_ARG_INFO, php-4.3.3RC2
# eef52f54 22-Jul-2003 Thies C. Arntzen

@ - Added optional Parameter to OCIWriteTemporaryLob which allows to
@ specify the type of LOB you want to be written (OCI_TEMP_CLOB, OCI_TEMP_BLOB)
@ (Patch by Novicky Marek <novicky@aar

@ - Added optional Parameter to OCIWriteTemporaryLob which allows to
@ specify the type of LOB you want to be written (OCI_TEMP_CLOB, OCI_TEMP_BLOB)
@ (Patch by Novicky Marek <novicky@aarongroup.cz>) (Thies)

show more ...


Revision tags: php-5.0.0b1
# f89e7e3f 22-Jun-2003 Andrey Hristov

proto fixes.


Revision tags: php-4.3.3RC1
# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b
# 83a0e508 02-May-2003 Thies C. Arntzen

@ - Fixed bug #23376 OCINewDescriptor


1...<<11121314151617181920