Skip to main content

%Dictionary.CompiledTrigger

persistent class %Dictionary.CompiledTrigger extends %Library.Persistent, %Dictionary.CompiledTriggerQuery

SQL Table Name: %Dictionary.CompiledTrigger

Property Inventory

Method Inventory

Parameters

parameter SQLENABLED = 1;

Properties

property Code as %RawString;
The code that is executed when the trigger is fired.
Property methods: CodeGet(), CodeIsValid()
property CodeMode as %RawString;
Specifies how a given method is implemented: lines of code to be compiled, or a method that will generate the resulting method or object.
Property methods: CodeModeGet(), CodeModeIsValid()
property CompilerGenerated as %Boolean;
CompilerGenerated
Property methods: CompilerGeneratedDisplayToLogical(), CompilerGeneratedGet(), CompilerGeneratedIsValid(), CompilerGeneratedLogicalToDisplay(), CompilerGeneratedNormalize(), CompilerGeneratedSet()
property Deprecated as %Boolean;
True if this trigger is deprecated.
Property methods: DeprecatedDisplayToLogical(), DeprecatedGet(), DeprecatedIsValid(), DeprecatedLogicalToDisplay(), DeprecatedNormalize()
property Description as %RawString;
Specifies a description of the SQL trigger.
Property methods: DescriptionGet(), DescriptionIsValid()
property Event as %RawString;
Specifies the SQL event that will fire the trigger.
Property methods: EventGet(), EventIsValid()
property Final as %Boolean;
Specifies that subclasses cannot override the definition of the SQL trigger.
Property methods: FinalDisplayToLogical(), FinalGet(), FinalIsValid(), FinalLogicalToDisplay(), FinalNormalize()
property Foreach as %RawString;
Indicates if the trigger will be invoked for each row, for rows and objects, or for each statement
Property methods: ForeachGet(), ForeachIsValid()
property Id as %Integer;
Id
Property methods: IdDisplayToLogical(), IdGet(), IdIsValid(), IdLogicalToDisplay(), IdNormalize(), IdSet()
property InheritedId as %Boolean;
InheritedId
Property methods: InheritedIdDisplayToLogical(), InheritedIdGet(), InheritedIdIsValid(), InheritedIdLogicalToDisplay(), InheritedIdNormalize(), InheritedIdSet()
property Internal as %Boolean;
If true, then do not display this item in automatic documentation.
Property methods: InternalDisplayToLogical(), InternalGet(), InternalIsValid(), InternalLogicalToDisplay(), InternalNormalize()
property KeywordError as %Boolean;
KeywordError
Property methods: KeywordErrorDisplayToLogical(), KeywordErrorGet(), KeywordErrorIsValid(), KeywordErrorLogicalToDisplay(), KeywordErrorNormalize(), KeywordErrorSet()
property KeywordModified as %Boolean;
KeywordModified
Property methods: KeywordModifiedDisplayToLogical(), KeywordModifiedGet(), KeywordModifiedIsValid(), KeywordModifiedLogicalToDisplay(), KeywordModifiedNormalize(), KeywordModifiedSet()
property Language as %RawString [ SqlFieldName = _Language ];
The language used to implement this trigger.
Property methods: LanguageGet(), LanguageIsValid()
property Name as %Dictionary.Identifier [ Required ];
The name of the SQL trigger.
Property methods: NameGet(), NameIsValid()
property NewTable as %RawString;
The name of the SQL table that holds old values for the trigger.
Property methods: NewTableGet(), NewTableIsValid()
property NotInheritable as %Boolean;
NotInheritable
Property methods: NotInheritableDisplayToLogical(), NotInheritableGet(), NotInheritableIsValid(), NotInheritableLogicalToDisplay(), NotInheritableNormalize(), NotInheritableSet()
property OldTable as %RawString;
The name of the SQL table that holds old values for the trigger.
Property methods: OldTableGet(), OldTableIsValid()
property Order as %Integer;
In the case of multiple triggers for the same EVENT and TIME, specifies the order in which the triggers should be fired.
Property methods: OrderDisplayToLogical(), OrderGet(), OrderIsValid(), OrderLogicalToDisplay(), OrderNormalize()
property Origin as %RawString;
Origin
Property methods: OriginGet(), OriginIsValid(), OriginSet()
property SequenceNumber as %Integer;
SequenceNumber
Property methods: SequenceNumberDisplayToLogical(), SequenceNumberGet(), SequenceNumberIsValid(), SequenceNumberLogicalToDisplay(), SequenceNumberNormalize()
property SqlName as %RawString;
Specifies an alternate name when this trigger is used by SQL.
Property methods: SqlNameGet(), SqlNameIsValid()
property TagGenerator as %RawString;
TagGenerator
Property methods: TagGeneratorGet(), TagGeneratorIsValid(), TagGeneratorSet()
property Time as %RawString [ SqlFieldName = _Time ];
Specifies whether the trigger is fired before or after the EVENT.
Property methods: TimeGet(), TimeIsValid()
property UpdateColumnList as %RawString;
Specifies one or more columns whose modification causes the trigger to be pulled by SQL.
Property methods: UpdateColumnListGet(), UpdateColumnListIsValid()
relationship parent as %Dictionary.CompiledClass [ Required , Inverse = Triggers , Cardinality = parent ];
Pointer to the containing parent object
Property methods: parentGet(), parentGetObject(), parentGetObjectId(), parentGetSwizzled(), parentIsValid(), parentNewObject(), parentRClose(), parentRExec(), parentRFetch(), parentRelate(), parentSQLCompute(), parentSet(), parentSetObject(), parentSetObjectId(), parentUnRelate(), parentUnSwizzle()

Methods

classmethod %Exists(oid As %ObjectIdentity) as %Boolean
Inherited description: Checks to see if the object identified by the OID oid exists in the extent.

Returns %Boolean TRUE if it exists, FALSE if it does not.

classmethod %LockId(id As %String, shared As %Boolean = 0, timeout As %Integer) as %Status
Inherited description: Obtain an exclusive or shared lock on the object identified by id. The type of lock obtained is determined by shared. This method is normally generated by the storage class for persistent classes using %Storage.Persistent or %Storage.SQL.
classmethod %UnlockId(id As %String, shared As %Boolean = 0, immediate As %Boolean = 0) as %Status
Inherited description: Release an exclusive or shared lock on the object identified by id. The type of lock released is determined by shared. If this method is not overridden then the default implementation returns an error. This method is normally generated by the storage class for persistent classes using %Storage.Persistent or %Storage.SQL.
method CodeIsDefined() as %Boolean
method CodeModeIsDefined() as %Boolean
method CodeModeReset()
method CodeModeSet(value As %String = "") as %Status
method CodeReset()
method CodeSet(value As %String = "") as %Status
method DeprecatedIsDefined() as %Boolean
method DeprecatedReset()
method DeprecatedSet(value As %String = "") as %Status
method DescriptionIsDefined() as %Boolean
method DescriptionReset()
method DescriptionSet(value As %String = "") as %Status
method EventIsDefined() as %Boolean
method EventReset()
method EventSet(value As %String = "") as %Status
method FinalIsDefined() as %Boolean
method FinalReset()
method FinalSet(value As %String = "") as %Status
method ForeachIsDefined() as %Boolean
method ForeachReset()
method ForeachSet(value As %String = "") as %Status
method InternalIsDefined() as %Boolean
method InternalReset()
method InternalSet(value As %String = "") as %Status
method LanguageIsDefined() as %Boolean
method LanguageReset()
method LanguageSet(value As %String = "") as %Status
method NameIsDefined() as %Boolean
method NameReset()
method NameSet(value As %String = "") as %Status
method NewTableIsDefined() as %Boolean
method NewTableReset()
method NewTableSet(value As %String = "") as %Status
method OldTableIsDefined() as %Boolean
method OldTableReset()
method OldTableSet(value As %String = "") as %Status
method OrderIsDefined() as %Boolean
method OrderReset()
method OrderSet(value As %String = "") as %Status
method SequenceNumberIsDefined() as %Boolean
method SequenceNumberReset()
method SequenceNumberSet(value As %String = "") as %Status
method SqlNameIsDefined() as %Boolean
method SqlNameReset()
method SqlNameSet(value As %String = "") as %Status
method TimeIsDefined() as %Boolean
method TimeReset()
method TimeSet(value As %String = "") as %Status
method UpdateColumnListIsDefined() as %Boolean
method UpdateColumnListReset()
method UpdateColumnListSet(value As %String = "") as %Status
classmethod parentOnDelete(id As %String, concurrency As %Integer) as %Status

Indexes

index (IDKEY on Name) [IdKey, Type = key];
Index methods: IDKEYCheck(), IDKEYDelete(), IDKEYExists(), IDKEYOpen(), IDKEYSQLCheckUnique(), IDKEYSQLExists(), IDKEYSQLFindPKeyByConstraint(), IDKEYSQLFindRowIDByConstraint()

Triggers

trigger OnDelete (BEFORE event DELETE);
trigger OnInsertUpdate (BEFORE event INSERT/UPDATE);

Inherited Members

Inherited Methods

FeedbackOpens in a new tab