<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.uodbc.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.odbc-num-rows.php',
    1 => 'odbc_num_rows',
    2 => 'Bir sonu&ccedil;taki satır sayısını d&ouml;nd&uuml;r&uuml;r',
  ),
  'up' => 
  array (
    0 => 'ref.uodbc.php',
    1 => 'ODBC İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.odbc-num-fields.php',
    1 => 'odbc_num_fields',
  ),
  'next' => 
  array (
    0 => 'function.odbc-pconnect.php',
    1 => 'odbc_pconnect',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/uodbc/functions/odbc-num-rows.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.odbc-num-rows" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">odbc_num_rows</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">odbc_num_rows</span> &mdash; <span class="dc-title">Bir sonuçtaki satır sayısını döndürür</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.odbc-num-rows-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>odbc_num_rows</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$deyim</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   Bir sonuçtaki satır sayısını döndürür. INSERT, UPDATE ve DELETE
   deyimleri için <span class="function"><strong>odbc_num_rows()</strong></span> etkilenen satır sayısını
   döndürür. SELECT için ise dönen değer kullanılabilir satır sayısı olabilir.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.odbc-num-rows-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">deyim</code></dt>
     <dd>
      <p class="para">
       <span class="function"><a href="function.odbc-exec.php" class="function">odbc_exec()</a></span> ile döndürülmüş bir sonuç tanıtıcısı.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.odbc-num-rows-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Belirtilen ODBC sonucundakı satırların sayısını döndürür. Bir hata oluşursa
   <code class="literal">-1</code> döner.
  </p>
 </div>

 <div class="refsect1 notes" id="refsect1-function.odbc-num-rows-notes">
  <h3 class="title">Notlar</h3>
  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
   <p class="para">
    İşlevin, bir SELECT sonrası kullanılabilir satırların sayısını saptamak
    için kullanımı durumunda çoğu sürücü <code class="literal">-1</code> döndürür.
   </p>
  </p></blockquote>
 </div>

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