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

117 lines
4.0 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>Open a persistent connection to a FrontBase Server</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.fbsql-pconnect" class="refentry">
<div class="refnamediv">
<h1 class="refname">fbsql_pconnect</h1>
<p class="verinfo">(PHP 4 &gt;= 4.0.6, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">fbsql_pconnect</span> &mdash; <span class="dc-title">Open a persistent connection to a FrontBase Server</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.fbsql-pconnect-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>fbsql_pconnect</strong></span>
([ <span class="methodparam"><span class="type">string</span> <code class="parameter">$hostname</code><span class="initializer"> = ini_get(&quot;fbsql.default_host&quot;)</span></span>
[, <span class="methodparam"><span class="type">string</span> <code class="parameter">$username</code><span class="initializer"> = ini_get(&quot;fbsql.default_user&quot;)</span></span>
[, <span class="methodparam"><span class="type">string</span> <code class="parameter">$password</code><span class="initializer"> = ini_get(&quot;fbsql.default_password&quot;)</span></span>
]]] ) : <span class="type">resource</span></div>
<p class="para rdfs-comment">
Establishes a persistent connection to a FrontBase server.
</p>
<p class="para">
To set the server port number, use <span class="function"><a href="fbsql_select_db.html" class="function">fbsql_select_db()</a></span>.
</p>
<p class="para">
<span class="function"><strong>fbsql_pconnect()</strong></span> acts very much like
<span class="function"><a href="fbsql_connect.html" class="function">fbsql_connect()</a></span> with two major differences:
</p>
<p class="para">
First, when connecting, the function would first try to find a
(persistent) link that&#039;s already open with the same host,
username and password. If one is found, an identifier for it
will be returned instead of opening a new connection.
</p>
<p class="para">
Second, the connection to the SQL server will not be closed when
the execution of the script ends. Instead, the link will remain
open for future use.
</p>
<p class="para">
This type of links is therefore called &#039;persistent&#039;.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.fbsql-pconnect-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">hostname</code></dt>
<dd>
<p class="para">
The server host name.
</p>
</dd>
<dt>
<code class="parameter">username</code></dt>
<dd>
<p class="para">
The user name for the connection.
</p>
</dd>
<dt>
<code class="parameter">password</code></dt>
<dd>
<p class="para">
The password for the connection.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.fbsql-pconnect-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns a positive FrontBase persistent link identifier on success, or
<strong><code>FALSE</code></strong> on error.
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.fbsql-pconnect-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="fbsql_connect.html" class="function" rel="rdfs-seeAlso">fbsql_connect()</a> - Open a connection to a FrontBase Server</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>