Language (Trigger Keyword)
Specifies the language in which the trigger is written.
Usage
To specify language in which the trigger is written, use the following syntax:
Trigger NewTrigger1 [ Event = sqlevent, Language = language ] { //implementation }
Where language is one of the following values:
-
objectscript — this trigger is written in ObjectScript (default).
-
python — this trigger is written in Python.
-
tsql — this trigger is written in TSQL. If you use this value, the trigger must be a statement-level trigger; that is, the setting of the Foreach keyword must be statement.
Details
This keyword specifies the language in which the trigger is written.
Default
If you omit this keyword, the language is ObjectScript.