reference/oci8/functions/oci-set-client-info.xml
729d3d6ef52f2e00977f4dc10e5cb28d42405f85
...
...
@@ -18,7 +18,7 @@
18
18
</para>
19
19
<para>
20
20
The client information is registered with the database when the next
21
-
'roundtrip' from PHP to the database occurs, typically when an SQL
21
+
'round-trip' from PHP to the database occurs, typically when an SQL
22
22
statement is executed.
23
23
</para>
24
24
<para>
...
...
@@ -73,7 +73,7 @@ $c = oci_connect('hr', 'welcome', 'localhost/XE');
73
73
// Record the client information
74
74
oci_set_client_info($c, 'My Application Version 2');
75
75

76
-
// Code that causes a roundtrip, for example a query:
76
+
// Code that causes a round-trip, for example a query:
77
77
$s = oci_parse($c, 'select * from dual');
78
78
oci_execute($s);
79
79
oci_fetch_all($s, $res);
...
...
@@ -110,6 +110,7 @@ SQL> select client_info from v$session;
110
110
<member><function>oci_set_module_name</function></member>
111
111
<member><function>oci_set_action</function></member>
112
112
<member><function>oci_set_client_identifier</function></member>
113
+
<member><function>oci_set_db_operation</function></member>
113
114
</simplelist>
114
115
</para>
115
116
</refsect1>
116
117