oci_result

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns field's value from the fetched row mixed oci_result ( resource $statement, mixed $field ) Returns the data from field in the current row, fetched by oci_fetch(). For details on the data type mapping performed by the OCI8 extension, see the datatypes supported by the driver Parameters: statement Returns the data from field in t

oci_password_change

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Changes password of Oracle's user bool oci_password_change ( resource $connection, string $username, string $old_password, string $new_password ) resource oci_password_change ( string $dbname , string $username , string $old_password , string $new_password ) Changes password for user with username. The oci_password_change() function is most useful for PHP command-line scripts, or when

oci_pconnect

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Connect to an Oracle database using a persistent connection resource oci_pconnect ( string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode ]]] ) Creates a persistent connection to an Oracle server and logs on. Persistent connections are cached and re-used between requests, resulting in reduced overhead on each page load; a typical

oci_num_rows

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns number of rows affected during statement execution int oci_num_rows ( resource $statement ) Gets the number of rows affected during statement execution. Parameters: statement A valid OCI statement identifier. Returns: Returns the number of rows affected as an integer, or FALSE on errors.

oci_num_fields

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the number of result columns in a statement int oci_num_fields ( resource $statement ) Gets the number of columns in the given statement. Parameters: statement A valid OCI statement identifier. Returns: Returns the number of columns as an integer, or FALSE on errors.

oci_new_descriptor

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Initializes a new empty LOB or FILE descriptor OCI-Lob oci_new_descriptor ( resource $connection [, int $type = OCI_DTYPE_LOB ] ) Allocates resources to hold descriptor or LOB locator. Parameters: connection An Oracle connection identifier, returned by oci_connect() or oci_pconnect(). type Valid v

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_new_collection

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Allocates new collection object OCI-Collection oci_new_collection ( resource $connection, string $tdo [, string $schema = NULL ] ) Allocates a new collection object. Parameters: connection An Oracle connection identifier, returned by oci_connect() or oci_pconnect(). tdo Should be a valid named typ

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