reference/oci8/functions/oci-set-client-identifier.xml
ed6de1ae20ce16c0c7be0b3fef282b6065bebfac
...
...
@@ -11,7 +11,7 @@
11
11
<methodsynopsis>
12
12
<type>bool</type><methodname>oci_set_client_identifier</methodname>
13
13
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
14
-
<methodparam><type>string</type><parameter>client_identifier</parameter></methodparam>
14
+
<methodparam><type>string</type><parameter>client_id</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
17
17
Sets the client identifier used by various database components to
...
...
@@ -20,7 +20,7 @@
20
20
</para>
21
21
<para>
22
22
The client identifier is registered with the database when the next
23
-
'roundtrip' from PHP to the database occurs, typically when an SQL
23
+
'round-trip' from PHP to the database occurs, typically when an SQL
24
24
statement is executed.
25
25
</para>
26
26
<para>
...
...
@@ -47,7 +47,7 @@
47
47
</listitem>
48
48
</varlistentry>
49
49
<varlistentry>
50
-
<term><parameter>client_identifier</parameter></term>
50
+
<term><parameter>client_id</parameter></term>
51
51
<listitem>
52
52
<para>
53
53
User chosen string up to 64 bytes long.
...
...
@@ -82,7 +82,7 @@ $c = oci_connect('myschema', 'welcome', 'localhost/XE');
82
82
// Tell Oracle who that user is
83
83
oci_set_client_identifier($c, $un);
84
84

85
-
// The next roundtrip to the database will piggyback the identifier
85
+
// The next round-trip to the database will piggyback the identifier
86
86
$s = oci_parse($c, 'select mydata from mytable');
87
87
oci_execute($s);
88
88

...
...
@@ -107,12 +107,12 @@ oci_execute($s);
107
107
<member><function>oci_set_module_name</function></member>
108
108
<member><function>oci_set_action</function></member>
109
109
<member><function>oci_set_client_info</function></member>
110
+
<member><function>oci_set_db_operation</function></member>
110
111
</simplelist>
111
112
</para>
112
113
</refsect1>
113
114

114
115
</refentry>
115
-

116
116
<!-- Keep this comment at the end of the file
117
117
Local variables:
118
118
mode: sgml
119
119