mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-29 21:12:42 +08:00
85 lines
3.4 KiB
HTML
85 lines
3.4 KiB
HTML
<!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>Seek to the next row number</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.sqlite-next" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">sqlite_next</h1>
|
|
<h1 class="refname">SQLiteResult::next</h1>
|
|
<h1 class="refname">SQLiteUnbuffered::next</h1>
|
|
<p class="verinfo">(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)</p><p class="refpurpose"><span class="refname">sqlite_next</span> -- <span class="refname">SQLiteResult::next</span> -- <span class="refname">SQLiteUnbuffered::next</span> — <span class="dc-title">Seek to the next row number</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.sqlite-next-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>sqlite_next</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result</code></span>
|
|
) : <span class="type">bool</span></div>
|
|
|
|
<p class="para rdfs-comment">面向对象风格 (method):</p>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>SQLiteResult::next</strong></span>
|
|
( <span class="methodparam">void</span>
|
|
) : <span class="type">bool</span></div>
|
|
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>SQLiteUnbuffered::next</strong></span>
|
|
( <span class="methodparam">void</span>
|
|
) : <span class="type">bool</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>sqlite_next()</strong></span> advances the result handle
|
|
<code class="parameter">result</code> to the next row.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.sqlite-next-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">result</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The SQLite result resource. This parameter is not required when using
|
|
the object-oriented method.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.sqlite-next-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns <strong><code>TRUE</code></strong> on success, or <strong><code>FALSE</code></strong> if there are no more rows.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.sqlite-next-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="sqlite_seek.html" class="function" rel="rdfs-seeAlso">sqlite_seek()</a> - Seek to a particular row number of a buffered result set</span></li>
|
|
<li class="member"><span class="function"><a href="sqlite_current.html" class="function" rel="rdfs-seeAlso">sqlite_current()</a> - Fetches the current row from a result set as an array</span></li>
|
|
<li class="member"><span class="function"><a href="sqlite_rewind.html" class="function" rel="rdfs-seeAlso">sqlite_rewind()</a> - Seek to the first row number</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |