oci_error
(no version information, might be only in CVS)
oci_error -- Returns the last error found
Description
array ocierror ( [resource source])
oci_error() returns the last error found. If the optional
source is not provided, the last error encountered is returned.
You can use connection or statement resources as value of
parameter source. If no error is found, oci_error() returns
FALSE. oci_error() returns the error as an associative array.
In this array, code consists the oracle error code and message
the oracle error string.
As of PHP 4.3: offset and sqltext will also be included
in the return array to indicate the location of the error
and the original SQL text which caused it.
Note: In PHP versions before 5.0.0 you must use ocierror()
instead. This name still can be used, it was left as alias
of oci_error() for downwards compatability. This, however,
is deprecated and not recommended.
oci_execute
(no version information, might be only in CVS)
oci_execute -- Executes a statement
Description
bool oci_execute ( resource stmt [, int mode])
oci_execute() executes a previously parsed statement (see
oci_parse()). The optional mode allows you to specify the
execution mode (default is OCI_COMMIT_ON_SUCCESS). If you
don't want statements to be committed automatically, you
should specify OCI_DEFAULT as your mode.
Returns TRUE on success or FALSE on failure.
Note: In PHP versions before 5.0.0 you must use ociexecute()
instead. This name still can be used, it was left as alias
of oci_execute() for downwards compatability. This, however,
is deprecated and not recommended.