persistent class INFORMATION.SCHEMA.STATEMENTRELATIONS
extends %Library.Persistent, %XML.Adaptor
SQL Table Name: STATEMENT_RELATIONS
Child table of INFORMATION_SCHEMA.STATEMENTS which contains each table or view entry use by the 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.
property Relation
as %String(MAXLEN=128) [ Required ];
name of the table or view the statement references. Note, the name of the relation is always stored in uppercase.
relationship Statement
as INFORMATION.SCHEMA.STATEMENTS [ Inverse = Relations,Cardinality = parent ];
Reference to the INFORMATION_SCHEMA.STATEMENTS row this is a child of
index (StatementRelationsIDKey on Relation) [IdKey];