Describes database supported grant clauses. Each member of the structure is a boolean value indicating whether the feature is supported or not.
You can find more information in comments below.
struct DbSupportedGrantClauses
{
bool Valid; // Indicates whether this structure contains valid data (it was successfully retrieved from data source)
bool DeleteTable;
bool InsertColumn;
bool InsertTable;
bool ReferenceTable;
bool ReferenceColumn;
bool SelectTable;
bool UpdateColumn;
bool UpdateTable;
bool UsageOnDomain;
bool UsageOnCharacterSet;
bool UsageOnCollation;
bool UsageOnTranslation;
bool WithGrantOption;
explicit operator String() const;
};
Namespace: | nitisa |
Include: | Nitisa/Db/DbSupportedGrantClauses.h |