oci_set_db_operation

PHP 7 >= 7.2.14, PHP 8, PHP 7 >= 7.3.1, PHP 8, PECL OCI8 >= 2.2.0
oci_set_db_operation - Sets the database operation
Manual
Code Examples

oci_set_db_operation( resource$connection, string$action ): bool

Sets the DBOP for Oracle tracing.

The database operation name is registered with the database when the next 'round-trip' from PHP to the database occurs, typically when a SQL statement is executed.

The database operation can subsequently be queried from database administration views such as V$SQL_MONITOR.

The oci_set_db_operation function is available when OCI8 uses Oracle 12 (or later) Client libraries and Oracle Database 12 (or later).

Parameters

connection

An Oracle connection identifier, returned by oci_connect, oci_pconnect, or oci_new_connect.

action

User chosen string.

Return Values

Returns true on success or false on failure.

Notes

Caution:
Round-trip Gotcha

Some but not all OCI8 functions cause round-trips. Round-trips to the database may not occur with queries when result caching is enabled.

Related Functions

Example of oci_set_db_operation

Show all examples for oci_set_db_operation

PHP Version:


Function oci_set_db_operation:

Oracle OCI8 Functions

Most used PHP functions