<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/cubridmysql.cubrid.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'function.cubrid-affected-rows.php',
    1 => 'cubrid_affected_rows',
    2 => 'Return the number of rows affected by the last SQL statement',
  ),
  'up' => 
  array (
    0 => 'cubridmysql.cubrid.php',
    1 => 'CUBRID MySQL 兼容性函数',
  ),
  'prev' => 
  array (
    0 => 'cubridmysql.cubrid.php',
    1 => 'CUBRID MySQL 兼容性函数',
  ),
  'next' => 
  array (
    0 => 'function.cubrid-client-encoding.php',
    1 => 'cubrid_client_encoding',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/cubrid/cubridmysql/cubrid-affected-rows.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.cubrid-affected-rows" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_affected_rows</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.0)</p><p class="refpurpose"><span class="refname">cubrid_affected_rows</span> &mdash; <span class="dc-title">Return the number of rows affected by the last SQL statement</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-affected-rows-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>cubrid_affected_rows</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$conn_identifier</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <div class="methodsynopsis dc-description"><span class="methodname"><strong>cubrid_affected_rows</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$req_identifier</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="simpara">
    The <span class="function"><strong>cubrid_affected_rows()</strong></span> function is used to get the
    number of rows affected by the SQL statement (INSERT, DELETE, UPDATE).
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-affected-rows-parameters">
 <h3 class="title">参数</h3>
 <dl>
  
   <dt><code class="parameter">conn_identifier</code></dt>
   <dd><span class="simpara">The CUBRID connection. If the connection identifier is not
     specified, the last link opend by <span class="function"><a href="function.cubrid-connect.php" class="function">cubrid_connect()</a></span> is
   assumed.</span></dd>
  
  
   <dt><code class="parameter">req_identifier</code></dt>
   <dd>
     <span class="simpara">
       Request Identifier, could be returned from either <span class="function"><a href="function.cubrid-prepare.php" class="function">cubrid_prepare()</a></span> or <span class="function"><a href="function.cubrid-execute.php" class="function">cubrid_execute()</a></span>.
       If the request identifier is not specified, the last identifier requested by
       <span class="function"><a href="function.cubrid-prepare.php" class="function">cubrid_prepare()</a></span> or <span class="function"><a href="function.cubrid-execute.php" class="function">cubrid_execute()</a></span> is assumed.
     </span>
   </dd>
  
 </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-affected-rows-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="simpara">
    Number of rows affected by the SQL statement, when process is successful.
  </p>
   <p class="simpara">
    -1, when SQL statement is not INSERT, DELETE or UPDATE.
  </p>
  <p class="simpara">
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, when the request identifier is not specified, and there is no last
   request.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-affected-rows-examples">
  <h3 class="title">示例</h3>
  <div class="example" id="example-1">
   <p><strong>示例 #1 <span class="function"><strong>cubrid_affected_rows()</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 </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'localhost'</span><span style="color: #007700">, </span><span style="color: #0000BB">33000</span><span style="color: #007700">, </span><span style="color: #DD0000">'demodb'</span><span style="color: #007700">, </span><span style="color: #DD0000">'dba'</span><span style="color: #007700">, </span><span style="color: #DD0000">''</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">, </span><span style="color: #DD0000">"DROP TABLE IF EXISTS cubrid_test"</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">, </span><span style="color: #DD0000">"CREATE TABLE cubrid_test (d varchar)"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$sql_stmt </span><span style="color: #007700">= </span><span style="color: #DD0000">"INSERT INTO cubrid_test(d) VALUES('php-test')"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$req </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_prepare</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">, </span><span style="color: #0000BB">$sql_stmt</span><span style="color: #007700">);<br /><br />for (</span><span style="color: #0000BB">$i </span><span style="color: #007700">= </span><span style="color: #0000BB">0</span><span style="color: #007700">; </span><span style="color: #0000BB">$i </span><span style="color: #007700">&lt; </span><span style="color: #0000BB">10</span><span style="color: #007700">; </span><span style="color: #0000BB">$i</span><span style="color: #007700">++) {<br />    </span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br />}<br /></span><span style="color: #0000BB">cubrid_commit</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$req </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">, </span><span style="color: #DD0000">"DELETE FROM cubrid_test WHERE d='php-test'"</span><span style="color: #007700">, </span><span style="color: #0000BB">CUBRID_ASYNC</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">cubrid_affected_rows</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">cubrid_affected_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">cubrid_affected_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">));<br /><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 /><br />print </span><span style="color: #DD0000">"done!"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

    <div class="example-contents"><p>以上示例会输出：</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">int(10)
int(10)
int(10)
done!</pre>
</div>
   </div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.cubrid-affected-rows-seealso">
  <h3 class="title">参见</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.cubrid-execute.php" class="function" rel="rdfs-seeAlso">cubrid_execute()</a> - Execute a prepared SQL statement</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>