(PHP 4, PHP 5, PHP 7)
odbc_tableprivileges — Lists tables and the privileges associated with each table
$odbc
, string|null $catalog
, string $schema
, string $table
) : resource|falseLists tables in the requested range and the privileges associated with each table.
odbc
Identificatorul conexiunii ODBC, accesați odbc_connect() pentru detalii.
catalog
Catalogul ('calificativul' în jargonul ODBC 2).
schema
Schema ('proprietarul' în jargonul ODBC 2).
Acest parametru acceptă următoarele șabloane de
căutare: %
pentru
a se potrivi cu zero sau mai multe caractere și
_
pentru a se potrivi
cu un singur caracter.
table
The name.
Acest parametru acceptă următoarele șabloane de
căutare: %
pentru
a se potrivi cu zero sau mai multe caractere și
_
pentru a se potrivi
cu un singur caracter.
An ODBC result identifier sau false
în cazul eșecului.
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
.
Example #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
}
?>
Exemplul de mai sus va afișa ceva similar cu:
Array ( [TABLE_CAT] => SalesOrders [TABLE_SCHEM] => dbo [TABLE_NAME] => Orders [GRANTOR] => dbo [GRANTEE] => dbo [PRIVILEGE] => DELETE [IS_GRANTABLE] => YES )