Uses of Class
ru.curs.celesta.event.TriggerQuery
-
Packages that use TriggerQuery Package Description ru.curs.celesta.dbutils.adaptors Adaptors for various RDBMS.ru.curs.celesta.dbutils.adaptors.ddl Root package of ddl adaptors.ru.curs.celesta.event Trigger event dispatching. -
-
Uses of TriggerQuery in ru.curs.celesta.dbutils.adaptors
Methods in ru.curs.celesta.dbutils.adaptors with parameters of type TriggerQuery Modifier and Type Method Description voidDBAdaptor. dropTrigger(Connection conn, TriggerQuery query)Drops a trigger from DB.Optional<String>DBAdaptor. getTriggerBody(Connection conn, TriggerQuery query)Returns body of the trigger existing in the database.abstract booleanDBAdaptor. triggerExists(Connection conn, TriggerQuery query)Checks if trigger exists in the DB.booleanFirebirdAdaptor. triggerExists(Connection conn, TriggerQuery query)booleanH2Adaptor. triggerExists(Connection conn, TriggerQuery query)booleanMSSQLAdaptor. triggerExists(Connection conn, TriggerQuery query)booleanOraAdaptor. triggerExists(Connection conn, TriggerQuery query)booleanPostgresAdaptor. triggerExists(Connection conn, TriggerQuery query) -
Uses of TriggerQuery in ru.curs.celesta.dbutils.adaptors.ddl
Methods in ru.curs.celesta.dbutils.adaptors.ddl with parameters of type TriggerQuery Modifier and Type Method Description voidDdlAdaptor. dropTrigger(Connection conn, TriggerQuery query)Drops a trigger from DB. -
Uses of TriggerQuery in ru.curs.celesta.event
Methods in ru.curs.celesta.event that return TriggerQuery Modifier and Type Method Description TriggerQueryTriggerQuery. withName(String name)Sets trigger name parameter.TriggerQueryTriggerQuery. withSchema(String schema)Sets DB schema name parameter.TriggerQueryTriggerQuery. withTableName(String tableName)Sets table name parameter.TriggerQueryTriggerQuery. withType(TriggerType type)Sets trigger type parameter.
-