java.lang .Object org.apache.derby.impl.sql.execute .TriggerEvent TriggerEvent public class TriggerEvent (Code) This is a simple class that we use to track
trigger events. This is not expected to
be used directly, instead there is a static
TriggerEvent in TriggerEvents for each event
found in this file.
author: jamie
AFTER_DELETE final static int AFTER_DELETE (Code)
AFTER_INSERT final static int AFTER_INSERT (Code)
AFTER_UPDATE final static int AFTER_UPDATE (Code)
BEFORE_DELETE final static int BEFORE_DELETE (Code)
BEFORE_INSERT final static int BEFORE_INSERT (Code)
BEFORE_UPDATE final static int BEFORE_UPDATE (Code)
LAST_BEFORE_EVENT final static int LAST_BEFORE_EVENT (Code)
MAX_EVENTS final static int MAX_EVENTS (Code)
TriggerEvent TriggerEvent(int type) (Code) Create a trigger event of the given type
Parameters: type - the type
getName String getName() (Code) Get the type number of this trigger
the type number
getNumber int getNumber() (Code) Get the type number of this trigger
the type number
isAfter boolean isAfter() (Code) Is this an after trigger
true if after
isBefore boolean isBefore() (Code) Is this a before trigger
true if before