oci_lob_copy

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Copies large object bool oci_lob_copy ( OCI-Lob $lob_to, OCI-Lob $lob_from [, int $length = 0 ] ) Copies a large object or a part of a large object to another large object. Old LOB-recipient data will be overwritten. If you need to copy a particular part of a LOB to a particular position of a LOB, use OCI-Lob::seek() to move LOB internal pointers. Parameters:

oci_internal_debug

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Enables or disables internal debug output void oci_internal_debug ( bool $onoff ) Enables or disables internal debug output. Parameters: onoff Set this to FALSE to turn debug output off or TRUE to turn it on. Returns: No value is returned. Notes: In PHP

oci_get_implicit_resultset

(PECL OCI8 >= 2.0.0) Returns the next child statement resource from a parent statement resource that has Oracle Database 12c Implicit Result Sets resource oci_get_implicit_resultset ( resource $statement ) Used to fetch consectutive sets of query results after the execution of a stored or anonymous Oracle PL/SQL block where that block returns query results with Oracle's DBMS_SQL.RETURN_RESULT PL/SQL function. This allow

oci_free_statement

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Frees all resources associated with statement or cursor bool oci_free_statement ( resource $statement ) Frees resources associated with Oracle's cursor or statement, which was received from as a result of oci_parse() or obtained from Oracle. Parameters: statement A valid OCI statement identifier. Returns: Ret

oci_free_descriptor

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Frees a descriptor bool oci_free_descriptor ( resource $descriptor ) Frees a descriptor allocated by oci_new_descriptor(). Returns: Returns TRUE on success or FALSE on failure. Notes: This function is commonly used as a method OCI-LOB::free. See also:

oci_field_type

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns a field's data type name mixed oci_field_type ( resource $statement, mixed $field ) Returns a field's data type name. Parameters: statement A valid OCI statement identifier. field Can be the field's index (1-based) or name. Returns: Returns the field data type as a

oci_field_type_raw

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Tell the raw Oracle data type of the field int oci_field_type_raw ( resource $statement, mixed $field ) Returns Oracle's raw "SQLT" data type of the field. If you want a field's type name, then use oci_field_type() instead. Parameters: statement A valid OCI statement identifier. field Can be the f

oci_field_size

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns field's size int oci_field_size ( resource $statement, mixed $field ) Returns the size of a field. Parameters: statement A valid OCI statement identifier. field Can be the field's index (1-based) or name. Returns: Returns the size of a field in bytes, or FALSE on er

oci_field_scale

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Tell the scale of the field int oci_field_scale ( resource $statement, mixed $field ) Returns the scale of the column with field index. For FLOAT columns, precision is nonzero and scale is -127. If precision is 0, then column is NUMBER. Else it's NUMBER(precision, scale). Parameters: statement A valid OCI statement identifier.

oci_field_precision

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Tell the precision of a field int oci_field_precision ( resource $statement, mixed $field ) Returns precision of the field. For FLOAT columns, precision is nonzero and scale is -127. If precision is 0, then column is NUMBER. Else it's NUMBER(precision, scale). Parameters: statement A valid OCI statement identifier.