Sophie

Sophie

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

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>Update a column using OID</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.cubrid-prepare.html">cubrid_prepare</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.cubrid-rollback.html">cubrid_rollback</a></div>
 <div class="up"><a href="ref.cubrid.html">CUBRID Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.cubrid-put" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_put</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.0)</p><p class="refpurpose"><span class="refname">cubrid_put</span> &mdash; <span class="dc-title">Update a column using OID</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-put-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>cubrid_put</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$conn_identifier</code></span>  
   , <span class="methodparam"><span class="type">string</span> <code class="parameter">$oid</code></span>  
   [, <span class="methodparam"><span class="type">string</span> <code class="parameter">$attr</code></span> 
   ], <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$value</code></span>  
   )</div>

  <p class="para rdfs-comment">
      The  <span class="function"><strong>cubrid_put()</strong></span> function is used to update an
      attribute of the instance of the given <em><code class="parameter">oid</code></em>.
  </p>
  <p class="para">
      You can update single attribute by using string data type to set
      <em><code class="parameter">attr</code></em>.  In such case, you can use integer,
      floating point or string type data for the <em><code class="parameter">value</code></em>
      argument. To update multiple number of attributes, you can disregard the
      <em><code class="parameter">attr</code></em> argument, and set
      <em><code class="parameter">value</code></em> argument with associative array data type.
  </p>
 </div>


<div class="refsect1 parameters" id="refsect1-function.cubrid-put-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
  <dl>

   <dt>

    <span class="term"><em><code class="parameter">conn_identifier</code></em></span>
    <dd>
<p class="para">Connection identifier.</p></dd>

   </dt>

   <dt>

    <span class="term"><em><code class="parameter">oid</code></em></span>
    <dd>
<p class="para">OID of the instance that you want to update.</p></dd>

   </dt>

   <dt>

    <span class="term"><em><code class="parameter">attr</code></em></span>
    <dd>
<p class="para">Name of the attribute that you want to update.</p></dd>

   </dt>

   <dt>

    <span class="term"><em><code class="parameter">value</code></em></span>
    <dd>
<p class="para">New value that you want to assign to the attribute.</p></dd>

   </dt>

  </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-put-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
    <strong><code>TRUE</code></strong>, when process is successful.
  </p>
  <p class="para">
    <strong><code>FALSE</code></strong>, when process is unsuccessful.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-put-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-1053">
   <p><strong>Example #1  <span class="function"><strong>cubrid_put()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$conn&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">33000</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"demodb"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"dba"</span><span style="color: #007700">);<br /><br />@</span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"DROP&nbsp;TABLE&nbsp;foo"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"CREATE&nbsp;TABLE&nbsp;foo(a&nbsp;int&nbsp;AUTO_INCREMENT,&nbsp;b&nbsp;set(int),&nbsp;c&nbsp;list(int),&nbsp;d&nbsp;char(10))"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;foo(a,&nbsp;b,&nbsp;c,&nbsp;d)&nbsp;VALUES(1,&nbsp;{1,2,3},&nbsp;{11,22,33,333},&nbsp;'a')"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;foo(a,&nbsp;b,&nbsp;c,&nbsp;d)&nbsp;VALUES(2,&nbsp;{4,5,7},&nbsp;{44,55,66,666},&nbsp;'b')"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$req&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;foo"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CUBRID_INCLUDE_OID</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_move_cursor</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CUBRID_CURSOR_FIRST</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$oid&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_current_oid</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$attr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_col_get</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$oid</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"b"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$attr</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_put</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$oid</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"b"</span><span style="color: #007700">,&nbsp;array(</span><span style="color: #0000BB">2</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">4</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">8</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">$attr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_col_get</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$oid</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"b"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$attr</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_close_request</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_disconnect</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

    <div class="example-contents"><p>The above example will output:</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
array(3) {
  [0]=&gt;
  string(1) &quot;1&quot;
  [1]=&gt;
  string(1) &quot;2&quot;
  [2]=&gt;
  string(1) &quot;3&quot;
}
array(3) {
  [0]=&gt;
  string(1) &quot;2&quot;
  [1]=&gt;
  string(1) &quot;4&quot;
  [2]=&gt;
  string(1) &quot;8&quot;
}
</pre></div>
   </div>
  </div>
 </div>


   <div class="refsect1 seealso" id="refsect1-function.cubrid-put-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist"> 
    <li class="member"> <span class="function"><a href="function.cubrid-get.html" class="function" rel="rdfs-seeAlso">cubrid_get()</a> - Get a column using OID</span></li>  
    <li class="member"> <span class="function"><a href="function.cubrid-set-add.html" class="function" rel="rdfs-seeAlso">cubrid_set_add()</a> - Insert a single element to set type column using OID</span></li>  
    <li class="member"> <span class="function"><a href="function.cubrid-set-drop.html" class="function" rel="rdfs-seeAlso">cubrid_set_drop()</a> - Delete an element from set type column using OID</span></li>  
    <li class="member"> <span class="function"><a href="function.cubrid-seq-insert.html" class="function" rel="rdfs-seeAlso">cubrid_seq_insert()</a> - Insert an element to a sequence type column using OID</span></li>  
    <li class="member"> <span class="function"><a href="function.cubrid-seq-drop.html" class="function" rel="rdfs-seeAlso">cubrid_seq_drop()</a> - Delete an element from sequence type column using OID</span></li>  
    <li class="member"> <span class="function"><a href="function.cubrid-seq-put.html" class="function" rel="rdfs-seeAlso">cubrid_seq_put()</a> - Update the element value of sequence type column using OID</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.cubrid-prepare.html">cubrid_prepare</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.cubrid-rollback.html">cubrid_rollback</a></div>
 <div class="up"><a href="ref.cubrid.html">CUBRID Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>