suppose that
- i make an insert into a table using Java Jdbc
- the insert fire a trigger
java waits that the trigger finish the execution or it continue the execution??
(using oracle 11g)
if it dose continue without wait, there i way to wait the end of the trigger execution?
The
INSERTstatement is not complete until all the triggers that need to fire have fired and run to completion. It doesn’t matter what front-end language you use to issue theINSERTstatement, theINSERTmust always wait for the triggers to complete.