Uses of Class
org.h2.schema.TriggerObject
-
Packages that use TriggerObject Package Description org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.table Classes related to a table and table meta data. -
-
Uses of TriggerObject in org.h2.schema
Fields in org.h2.schema with type parameters of type TriggerObject Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,TriggerObject>
Schema. triggers
Methods in org.h2.schema that return TriggerObject Modifier and Type Method Description TriggerObject
Schema. findTrigger(java.lang.String name)
Try to find a trigger with this name.Methods in org.h2.schema that return types with arguments of type TriggerObject Modifier and Type Method Description java.util.Collection<TriggerObject>
Schema. getAllTriggers()
-
Uses of TriggerObject in org.h2.table
Fields in org.h2.table with type parameters of type TriggerObject Modifier and Type Field Description private java.util.ArrayList<TriggerObject>
Table. triggers
Methods in org.h2.table that return types with arguments of type TriggerObject Modifier and Type Method Description java.util.ArrayList<TriggerObject>
Table. getTriggers()
Return list of triggers.Methods in org.h2.table with parameters of type TriggerObject Modifier and Type Method Description void
Table. addTrigger(TriggerObject trigger)
Add a trigger to this table.void
Table. removeTrigger(TriggerObject trigger)
Remove the given trigger from the list.private void
InformationSchemaTable. triggers(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, TriggerObject trigger, java.lang.String eventManipulation, Table table, java.lang.String tableName)
-