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

125 lines
4.6 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 the status for a given database</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.fbsql-db-status" class="refentry">
<div class="refnamediv">
<h1 class="refname">fbsql_db_status</h1>
<p class="verinfo">(PHP 4 &gt;= 4.0.7, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">fbsql_db_status</span> &mdash; <span class="dc-title">Get the status for a given database</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.fbsql-db-status-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>fbsql_db_status</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$database_name</code></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">
Gets the current status of the specified database.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.fbsql-db-status-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">database_name</code></dt>
<dd>
<p class="para">
The database name.
</p>
</dd>
<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-db-status-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns an integer value with the current status. This can be one of the
following constants:
<ul class="itemizedlist">
<li class="listitem">
<span class="simpara">
<strong><code>FALSE</code></strong> - The exec handler for the host was invalid. This error will
occur when the <code class="parameter">link_identifier</code> connects directly
to a database by using a port number. FBExec can be available on the
server but no connection has been made for it.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_UNKNOWN</code></strong> - The Status is unknown.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_STOPPED</code></strong> - The database is not running. Use
<span class="function"><a href="fbsql_start_db.html" class="function">fbsql_start_db()</a></span> to start the database.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_STARTING</code></strong> - The database is starting.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_RUNNING</code></strong> - The database is running and can be
used to perform SQL operations.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_STOPPING</code></strong> - The database is stopping.
</span>
</li>
<li class="listitem">
<span class="simpara">
<strong><code>FBSQL_NOEXEC</code></strong> - FBExec is not running on the server
and it is not possible to get the status of the database.
</span>
</li>
</ul>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.fbsql-db-status-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="fbsql_start_db.html" class="function" rel="rdfs-seeAlso">fbsql_start_db()</a> - Start a database on local or remote server</span></li>
<li class="member"><span class="function"><a href="fbsql_stop_db.html" class="function" rel="rdfs-seeAlso">fbsql_stop_db()</a> - Stop a database on local or remote server</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>