|
oci_set_db_operationSets the database operation 説明
bool oci_set_db_operation(resource
$connection , string $action )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 The oci_set_db_operation function is available when OCI8 uses Oracle 12 (or later) Client libraries and Oracle Database 12 (or later). パラメータ
戻り値
成功した場合に 例
例1 Setting the DBOP
// While the script is running, the administrator can see the database operations // being performed: sqlplus system/welcome SQL> select dbop_name from v$sql_monitor; 注意警告
データベースとのやりとりに関するメモOCI8 関数の中には、データベースとのやりとりを伴わないものもあります。 たとえば、結果のキャッシングが有効になっている場合、 クエリを実行してもデータベースとのやりとりを行わない可能性があります。 参考
|