History log of /PHP-8.3/ext/oci8/oci8.c (Results 301 – 325 of 541)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# f64928bd 26-Jan-2004 Antony Dovgal

improve debug messages


# 9fcb1dd2 26-Jan-2004 Antony Dovgal

oops =(
forgot these brackets..


# 15f22a57 26-Jan-2004 Antony Dovgal

fix oci_field_type_raw's proto
oci_collection_element_get should return FALSE only if there is no such element and NULL, if it's null


Revision tags: RELEASE_1_3b6, php_ibase_before_split
# dbb29bae 22-Jan-2004 Antony Dovgal

add missing protos
and some minor changes


# 26172609 22-Jan-2004 Antony Dovgal

MFB
oci_lob_save() should be removed indeed, but we're already in feature freeze =(


# 02ded976 21-Jan-2004 Antony Dovgal

*change constant name, coz it doesn't comply with others
*add constant's alias, coz others do have aliases
*change protos (oops =))
*add notices to collection functions
*change coll_e

*change constant name, coz it doesn't comply with others
*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.

show more ...


# c375c680 21-Jan-2004 Antony Dovgal

fix potential segfault in oci_lob_write()
change oci_lob_trim() - truncate length should be 0 by default.


# 649b844c 15-Jan-2004 Antony Dovgal

Fix bug #26892, ORA-21301 in ocinewcollection() call.
pEnv should be initialized in object mode too.


# 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 ...


1...<<11121314151617181920>>...22