Package com.mckoi.database.jdbc
Interface TriggerListener
public interface TriggerListener
A listener that is notified when the trigger being listened to is fired.
- Author:
- Tobias Downer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
triggerFired
(String trigger_name) Notifies this listener that the trigger with the name has been fired.
-
Method Details
-
triggerFired
Notifies this listener that the trigger with the name has been fired. Trigger's are specified via the SQL syntax and a trigger listener can be registered via MckoiConnection.- Parameters:
trigger_name
- the name of the trigger that fired.
-