uTools-Manuals/docs/php/fbsql_affected_rows.html
2019-04-08 23:22:26 +08:00

89 lines
3.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>Get number of affected rows in previous FrontBase operation</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.fbsql-affected-rows" class="refentry">
<div class="refnamediv">
<h1 class="refname">fbsql_affected_rows</h1>
<p class="verinfo">(PHP 4 &gt;= 4.0.6, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">fbsql_affected_rows</span> &mdash; <span class="dc-title">Get number of affected rows in previous FrontBase operation</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.fbsql-affected-rows-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>fbsql_affected_rows</strong></span>
([ <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link_identifier</code></span>
] ) : <span class="type">int</span></div>
<p class="para rdfs-comment">
<span class="function"><strong>fbsql_affected_rows()</strong></span> returns the number
of rows affected by the last INSERT, UPDATE or DELETE query
associated with <code class="parameter">link_identifier</code>.
</p>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
If you are using transactions, you need to call
<span class="function"><strong>fbsql_affected_rows()</strong></span> after your INSERT,
UPDATE, or DELETE query, not after the commit.
</p>
</p></blockquote>
<p class="para">
If the last query was a DELETE query with no WHERE clause, all of
the records will have been deleted from the table but this
function will return zero.
</p>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
When using UPDATE, FrontBase will not update columns where the
new value is the same as the old value. This creates the
possibility that <span class="function"><strong>fbsql_affected_rows()</strong></span> may not
actually equal the number of rows matched, only the number of
rows that were literally affected by the query.
</p>
</p></blockquote>
</div>
<div class="refsect1 parameters" id="refsect1-function.fbsql-affected-rows-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-affected-rows-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
If the last query failed, this function will return -1.
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.fbsql-affected-rows-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="fbsql_num_rows.html" class="function" rel="rdfs-seeAlso">fbsql_num_rows()</a> - Get number of rows in result</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>