persistent class INFORMATION.SCHEMA.STATEMENTCHILDREN
extends %Library.Persistent, %XML.Adaptor
SQL Table Name: STATEMENT_CHILDREN
Child table of INFORMATION_SCHEMA.STATEMENTS which contains hash of the root parallel statement if this is a parallel "child" 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 ParentHash
as %String(MAXLEN=128) [ Required ];
Hash for the parallel root parent
relationship Statement
as INFORMATION.SCHEMA.STATEMENTS [ Inverse = Children,Cardinality = parent ];
Reference to the INFORMATION_SCHEMA.STATEMENTS row this is a child of
index (StatementRelationsIDKey on ParentHash) [IdKey];