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 void
DBAdaptor. 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 boolean
DBAdaptor. triggerExists(Connection conn, TriggerQuery query)
Checks if trigger exists in the DB.boolean
FirebirdAdaptor. triggerExists(Connection conn, TriggerQuery query)
boolean
H2Adaptor. triggerExists(Connection conn, TriggerQuery query)
boolean
MSSQLAdaptor. triggerExists(Connection conn, TriggerQuery query)
boolean
OraAdaptor. triggerExists(Connection conn, TriggerQuery query)
boolean
PostgresAdaptor. 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 void
DdlAdaptor. 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 TriggerQuery
TriggerQuery. withName(String name)
Sets trigger name parameter.TriggerQuery
TriggerQuery. withSchema(String schema)
Sets DB schema name parameter.TriggerQuery
TriggerQuery. withTableName(String tableName)
Sets table name parameter.TriggerQuery
TriggerQuery. withType(TriggerType type)
Sets trigger type parameter.
-