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_lob_is_equal

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Compares two LOB/FILE locators for equality bool oci_lob_is_equal ( OCI-Lob $lob1, OCI-Lob $lob2 ) Compares two LOB/FILE locators. Parameters: lob1 A LOB identifier. lob2 A LOB identifier. Returns: Returns TRUE if these objects are equal, FALSE otherwise.

oci_new_cursor

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Allocates and returns a new cursor (statement handle) resource oci_new_cursor ( resource $connection ) Allocates a new statement handle on the specified connection. Parameters: connection An Oracle connection identifier, returned by oci_connect() or oci_pconnect(). Returns: Returns a new statement handle, or

oci_new_connect

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Connect to the Oracle server using a unique connection resource oci_new_connect ( string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode ]]] ) Establishes a new connection to an Oracle server and logs on. Unlike oci_connect() and oci_pconnect(), oci_new_connect() does not cache connections and will always return a brand-new freshly

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

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_name

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