mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
80 lines
3.2 KiB
HTML
80 lines
3.2 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 previous row number of a result set</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.sqlite-prev" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">sqlite_prev</h1>
|
|
<h1 class="refname">SQLiteResult::prev</h1>
|
|
<p class="verinfo">(PHP 5 < 5.4.0)</p><p class="refpurpose"><span class="refname">sqlite_prev</span> -- <span class="refname">SQLiteResult::prev</span> — <span class="dc-title">Seek to the previous row number of a result set</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.sqlite-prev-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>sqlite_prev</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::prev</strong></span>
|
|
( <span class="methodparam">void</span>
|
|
) : <span class="type">bool</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>sqlite_prev()</strong></span> seeks back the
|
|
<code class="parameter">result</code> handle to the previous row.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.sqlite-prev-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>
|
|
<blockquote class="note"><p><strong class="note">Note</strong>: <p class="para">此函数不能用于未缓冲的结果句柄。</p></p></blockquote>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.sqlite-prev-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 previous rows.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.sqlite-prev-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="sqlite_has_prev.html" class="function" rel="rdfs-seeAlso">sqlite_has_prev()</a> - Returns whether or not a previous row is available</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>
|
|
<li class="member"><span class="function"><a href="sqlite_next.html" class="function" rel="rdfs-seeAlso">sqlite_next()</a> - Seek to the next row number</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |