Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

Language

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:

  • cache — this trigger is written in ObjectScript (default).

  • 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.

See Also

FeedbackOpens in a new tab