Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > 2b917e0437961edec048f1d15e2d7449 > files > 5399

php-manual-en-7.2.11-1.mga7.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>Fetch a row</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-fetch-object.html">odbc_fetch_object</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.odbc-field-len.html">odbc_field_len</a></div>
 <div class="up"><a href="ref.uodbc.html">ODBC Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.odbc-fetch-row" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">odbc_fetch_row</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">odbc_fetch_row</span> &mdash; <span class="dc-title">Fetch a row</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.odbc-fetch-row-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">bool</span> <span class="methodname"><strong>odbc_fetch_row</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result_id</code></span>
   [, <span class="methodparam"><span class="type">int</span> <code class="parameter">$row_number</code><span class="initializer"> = 1</span></span>
  ] )</div>

  <p class="para rdfs-comment">
   Fetches a row of the data that was returned by <span class="function"><a href="function.odbc-do.html" class="function">odbc_do()</a></span>
   or <span class="function"><a href="function.odbc-exec.html" class="function">odbc_exec()</a></span>. After <span class="function"><strong>odbc_fetch_row()</strong></span>
   is called, the fields of that row can be accessed with
   <span class="function"><a href="function.odbc-result.html" class="function">odbc_result()</a></span>.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.odbc-fetch-row-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    
     <dt>
<code class="parameter">result_id</code></dt>

     <dd>

      <p class="para">
       The result identifier.
      </p>
     </dd>

    
    
     <dt>
<code class="parameter">row_number</code></dt>

     <dd>

      <p class="para">
       If <code class="parameter">row_number</code> is not specified,
       <span class="function"><strong>odbc_fetch_row()</strong></span> will try to fetch the next row in
       the result set. Calls to <span class="function"><strong>odbc_fetch_row()</strong></span> with and
       without <code class="parameter">row_number</code> can be mixed.
      </p>
      <p class="para">
       To step through the result more than once, you can call
       <span class="function"><strong>odbc_fetch_row()</strong></span> with
       <code class="parameter">row_number</code> 1, and then continue doing
       <span class="function"><strong>odbc_fetch_row()</strong></span> without
       <code class="parameter">row_number</code> to review the result.  If a driver
       doesn&#039;t support fetching rows by number, the
       <code class="parameter">row_number</code> parameter is ignored.
      </p>
     </dd>

    
   </dl>

  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.odbc-fetch-row-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code>TRUE</code></strong> if there was a row, <strong><code>FALSE</code></strong> otherwise.
  </p>
 </div>

</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-fetch-object.html">odbc_fetch_object</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.odbc-field-len.html">odbc_field_len</a></div>
 <div class="up"><a href="ref.uodbc.html">ODBC Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>