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

oci_field_is_null

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Checks if a field in the currently fetched row is NULL bool oci_field_is_null ( resource $statement, mixed $field ) Checks if the given field from the current row of statement is NULL. Parameters: statement A valid OCI statement identifier. field Can be the field's index (1-based) or name.

oci_fetch

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Fetches the next row from a query into internal buffers bool oci_fetch ( resource $statement ) Fetches the next row from a query into internal buffers accessible either with oci_result(), or by using variables previously defined with oci_define_by_name(). See oci_fetch_array() for general information about fetching data. Parameters: statement

oci_fetch_row

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the next row from a query as a numeric array array oci_fetch_row ( resource $statement ) Returns a numerically indexed array containing the next result-set row of a query. Each array entry corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist. Calling oci_fetch_row() is identical to calling oci_fetc

oci_fetch_object

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the next row from a query as an object object oci_fetch_object ( resource $statement ) Returns an object containing the next result-set row of a query. Each attribute of the object corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist. For details on the data type mapping performed by the OCI8 extens

oci_fetch_assoc

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the next row from a query as an associative array array oci_fetch_assoc ( resource $statement ) Returns an associative array containing the next result-set row of a query. Each array entry corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist. Calling oci_fetch_assoc() is identical to calling oci_fe

oci_fetch_array

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the next row from a query as an associative or numeric array array oci_fetch_array ( resource $statement [, int $mode ] ) Returns an array containing the next result-set row of a query. Each array entry corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist. If statement corresponds to a PL/SQL bloc

oci_fetch_all

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Fetches multiple rows from a query into a two-dimensional array int oci_fetch_all ( resource $statement, array &$output [, int $skip = 0 [, int $maxrows = -1 [, int $flags = OCI_FETCHSTATEMENT_BY_COLUMN + OCI_ASSOC ]]] ) Fetches multiple rows from a query into a two-dimensional array. By default, all rows are returned. This function can be called only once for each query execute

oci_execute

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Executes a statement bool oci_execute ( resource $statement [, int $mode = OCI_COMMIT_ON_SUCCESS ] ) Executes a statement previously returned from oci_parse(). After execution, statements like INSERT will have data committed to the database by default. For statements like SELECT, execution performs the logic of the query. Query results can subsequently be fetched in PHP with functions

oci_error

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the last error found array oci_error ([ resource $resource ] ) Returns the last error found. The function should be called immediately after an error occurs. Errors are cleared by a successful statement. Parameters: resource For most errors, resource is the resource handle that was passed to the failing function call. For co