mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
116 lines
3.6 KiB
HTML
116 lines
3.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>Lists tables and the privileges associated with each table</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.odbc-tableprivileges" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">odbc_tableprivileges</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">odbc_tableprivileges</span> — <span class="dc-title">Lists tables and the privileges associated with each table</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.odbc-tableprivileges-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>odbc_tableprivileges</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$connection_id</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$qualifier</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$owner</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$name</code></span>
|
|
) : <span class="type">resource</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Lists tables in the requested range and the privileges associated
|
|
with each table.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.odbc-tableprivileges-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">connection_id</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">ODBC 连接标识符,详见
|
|
<span class="function"><a href="odbc_connect.html" class="function">odbc_connect()</a></span>。</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">qualifier</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The qualifier.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">owner</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The owner. Accepts the following search patterns:
|
|
('%' to match zero or more characters and '_' to match a single character)
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">name</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The name. Accepts the following search patterns:
|
|
('%' to match zero or more characters and '_' to match a single character)
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.odbc-tableprivileges-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
An ODBC result identifier 或者在失败时返回 <strong><code>FALSE</code></strong>.
|
|
</p>
|
|
<p class="para">
|
|
The result set has the following columns:
|
|
<ul class="itemizedlist">
|
|
<li class="listitem"><span class="simpara">TABLE_QUALIFIER</span></li>
|
|
<li class="listitem"><span class="simpara">TABLE_OWNER</span></li>
|
|
<li class="listitem"><span class="simpara">TABLE_NAME</span></li>
|
|
<li class="listitem"><span class="simpara">GRANTOR</span></li>
|
|
<li class="listitem"><span class="simpara">GRANTEE</span></li>
|
|
<li class="listitem"><span class="simpara">PRIVILEGE</span></li>
|
|
<li class="listitem"><span class="simpara">IS_GRANTABLE</span></li>
|
|
</ul>
|
|
</p>
|
|
<p class="simpara">
|
|
The result set is ordered by TABLE_QUALIFIER, TABLE_OWNER and
|
|
TABLE_NAME.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |