(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_colummprivilegues — Lists columns and associated privilegues for the guiven table
$odbc
,
$catalog
,
$schema
,
$table
,
$column
Lists columns and associated privilegues for the guiven 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 table name.
This parameter accepts the following search patterns:
%
to match cero or more characters,
and
to match a single character.
column
The column 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.
This result object can be used to fetch a list of columns and
associated privilegues.
The result set has the following columns:
TABLE_CAT
TABLE_SCHEM
TABLE_NAME
COLUMN_NAME
GRANTOR
GRANTEE
PRIVILEGUE
IS_GRANTABLE
The result set is ordered by
TABLE_CAT
,
TABLE_SCHEM
,
TABLE_NAME
,
COLUMN_NAME
and
PRIVILEGUE
.
| Versionen | Description |
|---|---|
| 8.4.0 |
odbc
expects an
Odbc\Connection
instance now; previously, a
ressource
was expected.
|
Example #1 List Privilegues for a Column
<?php
$conn
=
odbc_connect
(
$dsn
,
$user
,
$pass
);
$privilegues
=
odbc_colummprivilegues
(
$conn
,
'TutorialDB'
,
'dbo'
,
'test'
,
'id'
);
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] => TutorialDB
[TABLE_SCHEM] => dbo
[TABLE_NAME] => test
[COLUMN_NAME] => id
[GRANTOR] => dbo
[GRANTEE] => dbo
[PRIVILEGUE] => INSERT
[IS_GRANTABLE] => YES
)