mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
94 lines
5.7 KiB
HTML
94 lines
5.7 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 message from previous operation</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.fbsql-error" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">fbsql_error</h1>
|
|
<p class="verinfo">(PHP 4 >= 4.0.6, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">fbsql_error</span> — <span class="dc-title">Returns the error message from previous operation</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.fbsql-error-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>fbsql_error</strong></span>
|
|
([ <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link_identifier</code></span>
|
|
] ) : <span class="type">string</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Returns the error message from previous FrontBase operation.
|
|
</p>
|
|
<p class="para">
|
|
Errors coming back from the fbsql database backend don't issue warnings.
|
|
Instead, use <span class="function"><strong>fbsql_error()</strong></span> to retrieve the error text.
|
|
Note that this function only returns the error code from the most recently
|
|
executed fbsql function (not including <span class="function"><strong>fbsql_error()</strong></span>
|
|
and <span class="function"><a href="fbsql_errno.html" class="function">fbsql_errno()</a></span>), so if you want to use it, make sure
|
|
you check the value before calling another fbsql function.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.fbsql-error-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
<dt>
|
|
<code class="parameter">
|
|
link_identifier</code></dt>
|
|
<dd>
|
|
<p class="para">由
|
|
<span class="function"><a href="fbsql_connect.html" class="function">fbsql_connect()</a></span> 或
|
|
<span class="function"><a href="fbsql_pconnect.html" class="function">fbsql_pconnect()</a></span> 返回的 FrontBase 链接标识符.</p>
|
|
<p class="para">如可选并未指定,函数会尝试查找一个到 FrontBase 服务器的开放链接,且如没有找到这样的链接,会尝试通过不带参数调用 <span class="function"><a href="fbsql_connect.html" class="function">fbsql_connect()</a></span> 来创建一个。</p>
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.fbsql-error-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns the error text from the last fbsql function, or
|
|
<em>''</em> (the empty string) if no error occurred.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.fbsql-error-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-1212">
|
|
<p><strong>Example #1 <span class="function"><strong>fbsql_error()</strong></span> Example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br />fbsql_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"marliesle"</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">fbsql_errno</span><span style="color: #007700">() . </span><span style="color: #DD0000">": " </span><span style="color: #007700">. </span><span style="color: #0000BB">fbsql_error</span><span style="color: #007700">() . </span><span style="color: #DD0000">"<br />"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">fbsql_select_db</span><span style="color: #007700">(</span><span style="color: #DD0000">"nonexistentdb"</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">fbsql_errno</span><span style="color: #007700">() . </span><span style="color: #DD0000">": " </span><span style="color: #007700">. </span><span style="color: #0000BB">fbsql_error</span><span style="color: #007700">() . </span><span style="color: #DD0000">"<br />"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$conn </span><span style="color: #007700">= </span><span style="color: #0000BB">fbsql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT * FROM nonexistenttable;"</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">fbsql_errno</span><span style="color: #007700">() . </span><span style="color: #DD0000">": " </span><span style="color: #007700">. </span><span style="color: #0000BB">fbsql_error</span><span style="color: #007700">() . </span><span style="color: #DD0000">"<br />"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.fbsql-error-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="fbsql_errno.html" class="function" rel="rdfs-seeAlso">fbsql_errno()</a> - Returns the error number from previous operation</span></li>
|
|
<li class="member"><span class="function"><a href="fbsql_warnings.html" class="function" rel="rdfs-seeAlso">fbsql_warnings()</a> - Enable or disable FrontBase warnings</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |