mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
92 lines
3.4 KiB
HTML
92 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>Set the transaction locking and isolation</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.fbsql-set-transaction" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">fbsql_set_transaction</h1>
|
|
<p class="verinfo">(PHP 4 >= 4.2.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">fbsql_set_transaction</span> — <span class="dc-title">Set the transaction locking and isolation</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.fbsql-set-transaction-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>fbsql_set_transaction</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link_identifier</code></span>
|
|
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$locking</code></span>
|
|
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$isolation</code></span>
|
|
) : <span class="type"><span class="type void">void</span></span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Sets the transaction <code class="parameter">locking</code> and
|
|
<code class="parameter">isolation</code>.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.fbsql-set-transaction-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>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">locking</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The type of locking to be set. It can be one of the following
|
|
constants: <strong><code>FBSQL_LOCK_DEFERRED</code></strong>,
|
|
<strong><code>FBSQL_LOCK_OPTIMISTIC</code></strong>,
|
|
or <strong><code>FBSQL_LOCK_PESSIMISTIC</code></strong>.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">isolation</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The type of isolation to be set. It can be one of the following
|
|
constants: <strong><code>FBSQL_ISO_READ_UNCOMMITTED</code></strong>,
|
|
<strong><code>FBSQL_ISO_READ_COMMITTED</code></strong>,
|
|
<strong><code>FBSQL_ISO_REPEATABLE_READ</code></strong>,
|
|
<strong><code>FBSQL_ISO_SERIALIZABLE</code></strong>,
|
|
or <strong><code>FBSQL_ISO_VERSIONED</code></strong>.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.fbsql-set-transaction-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
没有返回值。
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |