Class TriggerEvent

java.lang.Object
org.sqlite.parser.ast.TriggerEvent
All Implemented Interfaces:
ToSql

public class TriggerEvent extends Object implements ToSql
An instance of the following structure describes the event of a TRIGGER. type is the event type, one of TK_UPDATE, TK_INSERT, TK_DELETE, or TK_INSTEAD. If the event is of the form

      UPDATE OF (a,b,c)
 
Then the colNames records the list "a,b,c".