(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_tableprivileges — Lists tables and the privileges associated with each table
$odbc
,$catalog
,$schema
,$table
Lists tables in the requested range and the privileges associated with each table.
odbc
Eine ODBC-Verbindungsressource, siehe odbc_connect() für Details.
catalog
Der Katalog ('Kennzeichner' in ODBC 2 Terminologie).
schema
Das Schema ('Besitzer' in ODBC 2 Terminologie).
Dieser Parameter akzeptiert die
folgenden Suchmuster: %
für 0 oder mehr Zeichen und _
für genau ein beliebiges Zeichen.
table
The name.
Dieser Parameter akzeptiert die
folgenden Suchmuster: %
für 0 oder mehr Zeichen und _
für genau ein beliebiges Zeichen.
An ODBC result identifierBei einem Fehler wird false
zurückgegeben..
The result set has the following columns:
TABLE_CAT
TABLE_SCHEM
TABLE_NAME
GRANTOR
GRANTEE
PRIVILEGE
IS_GRANTABLE
The result set is ordered by TABLE_CAT
, TABLE_SCHEM
,
TABLE_NAME
, PRIVILEGE
and GRANTEE
.
Beispiel #1 List Privileges of a Table
<?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
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array ( [TABLE_CAT] => SalesOrders [TABLE_SCHEM] => dbo [TABLE_NAME] => Orders [GRANTOR] => dbo [GRANTEE] => dbo [PRIVILEGE] => DELETE [IS_GRANTABLE] => YES )