persistent class INFORMATION.SCHEMA.STATEMENTPRIVOBJECTS
extends %Library.Persistent, %XML.Adaptor
SQL Table Name: STATEMENT_PRIV_OBJECTS
Child class of INFORMATION.SCHEMA.STATEMENTS, the SQL Objects that have privileges required for this statement
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
relationship Actions
as INFORMATION.SCHEMA.STATEMENTPRIVACTIONS [ Inverse = Relation,Cardinality = children ];
property Relation
as %String(MAXLEN=130) [ Required ];
SQL Privilege Object name for relatitions for this statement that will need privilege on to run. Note, the name of the relation is always stored in uppercase.
This format is typically , table-type is 1 for tables, 3 for views. iqn is internal qualified name
relationship Statements
as INFORMATION.SCHEMA.STATEMENTS [ Inverse = PrivilegeRelations,Cardinality = parent ];
Reference to the INFORMATION_SCHEMA.STATEMENTS row this is a child of
index (StatementRelationsIDKey on Relation) [IdKey];