TriggerType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of the trigger.
[System.Serializable]
public enum TriggerType
[<System.Serializable>]
type TriggerType =
Public Enum TriggerType
- Inheritance
-
TriggerType
- Attributes
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Unknown |
For | 1 | For behaves exactly as After. |
After | 2 | Specifies that the trigger is fired only when all operations specified in the triggering SQL statement have executed successfully. All referential cascade actions and constraint checks also must succeed before this trigger executes. |
InsteadOf | 3 | Specifies that the trigger is executed instead of the triggering SQL statement, thus overriding the actions of the triggering statements. |