OleDbSchemaGuid.Column_Privileges Field

Definition

Returns the privileges on columns of tables defined in the catalog that are available to or granted by a given user.

public: static initonly Guid Column_Privileges;
public static readonly Guid Column_Privileges;
 staticval mutable Column_Privileges : Guid
Public Shared ReadOnly Column_Privileges As Guid 

Field Value

Remarks

Column_Privileges maps to the OLE DB COLUMN_PRIVILEGES rowset. Unless otherwise specified, restriction columns are returned in the following order.

Restriction column CLR data type Description
TABLE_CATALOG string Catalog name in which the table is defined. A null value if the provider does not support catalogs.
TABLE_SCHEMA string Unqualified schema name in which the table is defined. A null value if the provider does not support schemas.
TABLE_NAME string Table name.
COLUMN_NAME string Column name. This column, together with the COLUMN_GUID and COLUMN_PROPID columns, forms the column ID. One or more of these columns will be a null value, depending on which elements of the DBID structure the provider uses.
GRANTOR string User that granted the privileges on the table in TABLE_NAME.
GRANTEE string User name (or "PUBLIC") that the privilege has been granted to.

Applies to