<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ibase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.ibase-affected-rows.php',
    1 => 'ibase_affected_rows',
    2 => 'Return the number of rows that were affected by the previous query',
  ),
  'up' => 
  array (
    0 => 'ref.ibase.php',
    1 => 'Firebird/InterBase Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.ibase-add-user.php',
    1 => 'ibase_add_user',
  ),
  'next' => 
  array (
    0 => 'function.ibase-backup.php',
    1 => 'ibase_backup',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ibase/functions/ibase-affected-rows.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ibase-affected-rows" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ibase_affected_rows</h1>
  <p class="verinfo">(PHP 5, PHP 7 &lt; 7.4.0)</p><p class="refpurpose"><span class="refname">ibase_affected_rows</span> &mdash; <span class="dc-title">Return the number of rows that were affected by the previous query</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ibase-affected-rows-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ibase_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">$link_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">
   This function returns the number of rows that were affected by the
   previous query (INSERT, UPDATE or DELETE) that was executed from within
   the specified transaction context.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ibase-affected-rows-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <dl>
   
    <dt><code class="parameter">link_identifier</code></dt>
    <dd>
     <span class="simpara">
      A transaction context. If <code class="parameter">link_identifier</code> is a
      connection resource, its default transaction is used.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ibase-affected-rows-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="simpara">
   Returns the number of rows as an integer.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.ibase-affected-rows-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.ibase-query.php" class="function" rel="rdfs-seeAlso">ibase_query()</a> - Execute a query on an InterBase database</span></li>
   <li><span class="function"><a href="function.ibase-execute.php" class="function" rel="rdfs-seeAlso">ibase_execute()</a> - Execute a previously prepared query</span></li>
  </ul>
 </div>


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