Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 4857

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Sets the client identifier</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.oci-set-action.html">oci_set_action</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.oci-set-client-info.html">oci_set_client_info</a></div>
 <div class="up"><a href="ref.oci8.html">OCI8 Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.oci-set-client-identifier" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">oci_set_client_identifier</h1>
  <p class="verinfo">(PHP 5.3.2, PECL OCI8 &gt;= 1.4.0)</p><p class="refpurpose"><span class="refname">oci_set_client_identifier</span> &mdash; <span class="dc-title">Sets the client identifier</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.oci-set-client-identifier-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">bool</span> <span class="methodname"><strong>oci_set_client_identifier</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$connection</code></span>
   , <span class="methodparam"><span class="type">string</span> <code class="parameter">$client_identifier</code></span>
   )</div>

  <p class="para rdfs-comment">
   Sets the client identifier used by various database components to
   identify lightweight application users who authenticate as the same
   database user.
  </p>
  <p class="para">
   The client identifier is registered with the database when the next
   &#039;roundtrip&#039; from PHP to the database occurs, typically when an SQL
   statement is executed.
  </p>
  <p class="para">
   The identifier can subsequently be queried, for example
   with <em>SELECT SYS_CONTEXT(&#039;USERENV&#039;,&#039;CLIENT_IDENTIFIER&#039;)
   FROM DUAL</em>.  Database administration views such
   as <em>V$SESSION</em> will also contain the value.  It
   can be used with <em>DBMS_MONITOR.CLIENT_ID_TRACE_ENABLE</em>
   for tracing and can also be used for auditing.
  </p>
  <p class="para">
   The value may be retained across page requests that use the same persistent connection.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.oci-set-client-identifier-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">connection</code></em></span>
     <dd>

      <p class="para">An Oracle connection identifier,
returned by  <span class="function"><a href="function.oci-connect.html" class="function">oci_connect()</a></span>,  <span class="function"><a href="function.oci-pconnect.html" class="function">oci_pconnect()</a></span>,
or  <span class="function"><a href="function.oci-new-connect.html" class="function">oci_new_connect()</a></span>.</p>
     </dd>

    </dt>

    <dt>

     <span class="term"><em><code class="parameter">client_identifier</code></em></span>
     <dd>

      <p class="para">
       User chosen string up to 64 bytes long.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.oci-set-client-identifier-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code>TRUE</code></strong> on success or <strong><code>FALSE</code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.oci-set-client-identifier-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-2023">
    <p><strong>Example #1 Setting the client identifier to the application user</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//&nbsp;Find&nbsp;the&nbsp;application&nbsp;user's&nbsp;login&nbsp;name<br /></span><span style="color: #0000BB">session_start</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$un&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">my_validate_session</span><span style="color: #007700">(</span><span style="color: #0000BB">$_SESSION</span><span style="color: #007700">[</span><span style="color: #DD0000">'username'</span><span style="color: #007700">]);<br /></span><span style="color: #0000BB">$c&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">oci_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'myschema'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'welcome'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'localhost/XE'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//&nbsp;Tell&nbsp;Oracle&nbsp;who&nbsp;that&nbsp;user&nbsp;is<br /></span><span style="color: #0000BB">oci_set_client_identifier</span><span style="color: #007700">(</span><span style="color: #0000BB">$c</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$un</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//&nbsp;The&nbsp;next&nbsp;roundtrip&nbsp;to&nbsp;the&nbsp;database&nbsp;will&nbsp;piggyback&nbsp;the&nbsp;identifier<br /></span><span style="color: #0000BB">$s&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">oci_parse</span><span style="color: #007700">(</span><span style="color: #0000BB">$c</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'select&nbsp;mydata&nbsp;from&nbsp;mytable'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">oci_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$s</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//&nbsp;...<br /><br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.oci-set-client-identifier-notes">
  <h3 class="title">Notes</h3>
  <div class="caution"><strong class="caution">Caution</strong><h1 class="title">Roundtrip Gotcha</h1>
<p class="para">Some but not all OCI8 functions cause roundtrips.  Roundtrips to the
database may not occur with queries when result caching is enabled.
</p></div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.oci-set-client-identifier-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.oci-set-module-name.html" class="function" rel="rdfs-seeAlso">oci_set_module_name()</a> - Sets the module name</span></li>
    <li class="member"> <span class="function"><a href="function.oci-set-action.html" class="function" rel="rdfs-seeAlso">oci_set_action()</a> - Sets the action name</span></li>
    <li class="member"> <span class="function"><a href="function.oci-set-client-info.html" class="function" rel="rdfs-seeAlso">oci_set_client_info()</a> - Sets the client information</span></li>
   </ul>
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.oci-set-action.html">oci_set_action</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.oci-set-client-info.html">oci_set_client_info</a></div>
 <div class="up"><a href="ref.oci8.html">OCI8 Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>