vote up 1 vote down star

Hi,

I'm using Hibernate (in a Grails app) and the transactional boundaries are service methods, i.e. every time a service method is called a transaction starts, and every time a service call completes the transaction is either rolled back or committed.

If one of the database operations causes a database trigger to fire, and this trigger makes changes to persistent data, will these changes be rolled back or committed when the service call completes, or are changes made by the trigger "outside" the transaction?

Thanks, Don

flag

38% accept rate

1 Answer

vote up 3 vote down

Trigger changes are part of transaction and will be committed if transaction is committed and rolled back otherwise.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.