Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 5871

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>Returns the rowid of the most recently inserted row</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.sqlite-last-error.html">sqlite_last_error</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.sqlite-libencoding.html">sqlite_libencoding</a></div>
 <div class="up"><a href="ref.sqlite.html">SQLite Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.sqlite-last-insert-rowid" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">sqlite_last_insert_rowid</h1>
  <h1 class="refname">SQLiteDatabase::lastInsertRowid</h1>
  <p class="verinfo">(PHP 5 &lt; 5.4.0, PECL sqlite &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">sqlite_last_insert_rowid</span> -- <span class="refname">SQLiteDatabase::lastInsertRowid</span> &mdash; <span class="dc-title">Returns the rowid of the most recently inserted row</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.sqlite-last-insert-rowid-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>sqlite_last_insert_rowid</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$dbhandle</code></span>
   )</div>

  <p class="para rdfs-comment">Object oriented style (method):</p>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="type">int</span> <span class="methodname"><strong>SQLiteDatabase::lastInsertRowid</strong></span>
    ( <span class="methodparam">void</span>
   )</div>

  <p class="para rdfs-comment">
   Returns the rowid of the row that was most recently inserted into the
   database <em><code class="parameter">dbhandle</code></em>, if it was created as an
   auto-increment field.
  </p>
  <div class="tip"><strong class="tip">Tip</strong>
   <p class="para">
    You can create auto-increment fields in SQLite by declaring them as
    <em>INTEGER PRIMARY KEY</em> in your table schema.
   </p>
  </div>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.sqlite-last-insert-rowid-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">dbhandle</code></em></span>
     <dd>

      <p class="para">
       The SQLite Database resource; returned from  <span class="function"><a href="function.sqlite-open.html" class="function">sqlite_open()</a></span>
       when used procedurally.  This parameter is not required
       when using the object-oriented method.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.sqlite-last-insert-rowid-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns the row id, as an integer.
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.sqlite-last-error.html">sqlite_last_error</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.sqlite-libencoding.html">sqlite_libencoding</a></div>
 <div class="up"><a href="ref.sqlite.html">SQLite Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>