mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
78 lines
3.0 KiB
HTML
78 lines
3.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>List tables in an mSQL database</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.msql-list-tables" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">msql_list_tables</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">msql_list_tables</span> — <span class="dc-title">List tables in an mSQL database</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.msql-list-tables-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>msql_list_tables</strong></span>
|
|
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$database</code></span>
|
|
[, <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link_identifier</code></span>
|
|
] ) : <span class="type">resource</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>msql_list_tables()</strong></span> lists the tables on the specified
|
|
<code class="parameter">database</code>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.msql-list-tables-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">database</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The name of the database.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">
|
|
link_identifier</code></dt>
|
|
<dd>
|
|
<p class="para">mSQL 连接。如果不指定,则使用由
|
|
<span class="function"><a href="msql_connect.html" class="function">msql_connect()</a></span> 最近打开的连接。如果没有找到该连接,函数会尝试通过调用
|
|
<span class="function"><a href="msql_connect.html" class="function">msql_connect()</a></span> 建立连接并使用它。
|
|
</p></dd>
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.msql-list-tables-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns a result set which may be traversed with any function that fetches
|
|
result sets, such as <span class="function"><a href="msql_fetch_array.html" class="function">msql_fetch_array()</a></span>. On failure,
|
|
this function will return <strong><code>FALSE</code></strong>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.msql-list-tables-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="msql_list_fields.html" class="function" rel="rdfs-seeAlso">msql_list_fields()</a> - List result fields</span></li>
|
|
<li class="member"><span class="function"><a href="msql_list_dbs.html" class="function" rel="rdfs-seeAlso">msql_list_dbs()</a> - List mSQL databases on server</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |