uTools-Manuals/docs/php/sqlite_last_error.html
2019-04-28 19:00:34 +08:00

81 lines
3.1 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>Returns the error code of the last error for a database</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.sqlite-last-error" class="refentry">
<div class="refnamediv">
<h1 class="refname">sqlite_last_error</h1>
<h1 class="refname">SQLiteDatabase::lastError</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_error</span> -- <span class="refname">SQLiteDatabase::lastError</span> &mdash; <span class="dc-title">Returns the error code of the last error for a database</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.sqlite-last-error-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>sqlite_last_error</strong></span>
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$dbhandle</code></span>
) : <span class="type">int</span></div>
<p class="para rdfs-comment">面向对象风格 (method):</p>
<div class="methodsynopsis dc-description">
<span class="modifier">public</span> <span class="methodname"><strong>SQLiteDatabase::lastError</strong></span>
( <span class="methodparam">void</span>
) : <span class="type">int</span></div>
<p class="para rdfs-comment">
Returns the error code from the last operation performed on
<code class="parameter">dbhandle</code> (the database handle), or <em>0</em>
when no error occurred. A human readable
description of the error code can be retrieved using
<span class="function"><a href="sqlite_error_string.html" class="function">sqlite_error_string()</a></span>.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.sqlite-last-error-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">dbhandle</code></dt>
<dd>
<p class="para">
The SQLite Database resource; returned from <span class="function"><a href="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>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.sqlite-last-error-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns an error code, or 0 if no error occurred.
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.sqlite-last-error-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="sqlite_error_string.html" class="function" rel="rdfs-seeAlso">sqlite_error_string()</a> - Returns the textual description of an error code</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>