persistent class INFORMATION.SCHEMA.STATEMENTLOCATIONS
extends %Library.Persistent, %XML.Adaptor
SQL Table Name: STATEMENT_LOCATIONS
Returns one row location (routine, class) that has an SQL Statement. This is a child table of INFORMATION_SCHEMA.STATEMENTS as a statement may be found in multiple locations.
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 Location
as %String(MAXLEN=128) [ Required ];
Routine or classname the SQL Statement reside in
property RuntimeLocation
as %String(MAXLEN=128);
Runtime location of SQL logic, for universal cached queries will be different to Location
relationship Statement
as INFORMATION.SCHEMA.STATEMENTS [ Inverse = Locations,Cardinality = parent ];
Parent reference to the SQL Statement
property Type
as %String(MAXLEN=10);
Type of location: Class (CLS), Routine (RTN), etc.
index (StatementRelationsIDKey on Location) [IdKey];