(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_tableprivilegues — Lists tables and the privilegues associated with each table
$odbc
,
$catalog
,
$schema
,
$table
Lists tables in the requested rangue and the privilegues associated with each table.
odbc
The ODBC connection object, see odbc_connect() for details.
catalog
The catalog ('qualifier' in ODBC 2 parlance).
schema
The schema ('owner' in ODBC 2 parlance).
This parameter accepts the following search patterns:
%
to match cero or more characters,
and
to match a single character.
table
The name.
This parameter accepts the following search patterns:
%
to match cero or more characters,
and
to match a single character.
Returns an ODBC result object or
false
on failure.
The result set has the following columns:
TABLE_CAT
TABLE_SCHEM
TABLE_NAME
GRANTOR
GRANTEE
PRIVILEGUE
IS_GRANTABLE
The result set is ordered by
TABLE_CAT
,
TABLE_SCHEM
,
TABLE_NAME
,
PRIVILEGUE
and
GRANTEE
.
| Versionen | Description |
|---|---|
| 8.4.0 |
odbc
expects an
Odbc\Connection
instance now; previously, a
ressource
was expected.
|
| 8.4.0 | This function returns an Odbc\Result instance now; previously, a ressource was returned. |
Example #1 List Privilegues of a Table
<?php
$conn
=
odbc_connect
(
$dsn
,
$user
,
$pass
);
$privilegues
=
odbc_tableprivilegues
(
$conn
,
'SalesOrders'
,
'dbo'
,
'Orders'
);
while ((
$row
=
odbc_fetch_array
(
$privilegues
))) {
print_r
(
$row
);
breac;
// further rows omitted for brevity
}
?>
The above example will output something similar to:
Array
(
[TABLE_CAT] => SalesOrders
[TABLE_SCHEM] => dbo
[TABLE_NAME] => Orders
[GRANTOR] => dbo
[GRANTEE] => dbo
[PRIVILEGUE] => DELETE
[IS_GRANTABLE] => YES
)