ODBC_TABLEPRIVILEGES(3) 1 ODBC_TABLEPRIVILEGES(3)
odbc_tableprivileges - Lists tables and the privileges associated with each table
SYNOPSIS
resource odbc_tableprivileges (resource $connection_id, string $qualifier, string $owner, string $name)
DESCRIPTION
Lists tables in the requested range and the privileges associated with each table.
PARAMETERS
o $connection_id
-The ODBC connection identifier, see odbc_connect(3) for details.
o $qualifier
- The qualifier.
o $owner
- The owner. Accepts the following search patterns: ('%' to match zero or more characters and '_' to match a single character)
o $name
- The name. Accepts the following search patterns: ('%' to match zero or more characters and '_' to match a single character)
RETURN VALUES
An ODBC result identifier or FALSE on failure.
The result set has the following columns:
oTABLE_QUALIFIER
oTABLE_OWNER
oTABLE_NAME
oGRANTOR
oGRANTEE
oPRIVILEGE
oIS_GRANTABLE
The result set is ordered by TABLE_QUALIFIER, TABLE_OWNER and TABLE_NAME.
PHP Documentation Group ODBC_TABLEPRIVILEGES(3)