mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-30 07:48:56 +00:00

Closes GH-286. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@352189 c90b9560-bf6c-de11-be94-00142212c4b1
151 lines
4.1 KiB
XML
151 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xml:id="function.odbc-tableprivileges" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>odbc_tableprivileges</refname>
|
|
<refpurpose>Lists tables and the privileges associated with each table</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>resource</type><type>false</type></type><methodname>odbc_tableprivileges</methodname>
|
|
<methodparam><type>resource</type><parameter>odbc</parameter></methodparam>
|
|
<methodparam><type class="union"><type>string</type><type>null</type></type><parameter>catalog</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>schema</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>table</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Lists tables in the requested range and the privileges associated
|
|
with each table.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>odbc</parameter></term>
|
|
<listitem>
|
|
&odbc.connection.id;
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>catalog</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
&odbc.parameter.catalog;
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>schema</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
&odbc.parameter.schema;
|
|
&odbc.parameter.search;
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>table</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
The name.
|
|
&odbc.parameter.search;
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
An ODBC result identifier&return.falseforfailure;.
|
|
</para>
|
|
<para>
|
|
The result set has the following columns:
|
|
<itemizedlist>
|
|
<listitem><simpara><literal>TABLE_CAT</literal></simpara></listitem>
|
|
<listitem><simpara><literal>TABLE_SCHEM</literal></simpara></listitem>
|
|
<listitem><simpara><literal>TABLE_NAME</literal></simpara></listitem>
|
|
<listitem><simpara><literal>GRANTOR</literal></simpara></listitem>
|
|
<listitem><simpara><literal>GRANTEE</literal></simpara></listitem>
|
|
<listitem><simpara><literal>PRIVILEGE</literal></simpara></listitem>
|
|
<listitem><simpara><literal>IS_GRANTABLE</literal></simpara></listitem>
|
|
</itemizedlist>
|
|
&odbc.result.driver-specific;
|
|
</para>
|
|
<simpara>
|
|
The result set is ordered by <literal>TABLE_CAT</literal>, <literal>TABLE_SCHEM</literal>,
|
|
<literal>TABLE_NAME</literal>, <literal>PRIVILEGE</literal> and <literal>GRANTEE</literal>.
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<example xml:id="odbc-tableprivileges.example.basic">
|
|
<title>List Privileges of a Table</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$conn = odbc_connect($dsn, $user, $pass);
|
|
$privileges = odbc_tableprivileges($conn, 'SalesOrders', 'dbo', 'Orders');
|
|
while (($row = odbc_fetch_array($privileges))) {
|
|
print_r($row);
|
|
break; // further rows omitted for brevity
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[TABLE_CAT] => SalesOrders
|
|
[TABLE_SCHEM] => dbo
|
|
[TABLE_NAME] => Orders
|
|
[GRANTOR] => dbo
|
|
[GRANTEE] => dbo
|
|
[PRIVILEGE] => DELETE
|
|
[IS_GRANTABLE] => YES
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>odbc_tables</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|