transactions in MS Access
Posted
by arcticpenguin
on Stack Overflow
See other posts from Stack Overflow
or by arcticpenguin
Published on 2010-05-13T19:41:47Z
Indexed on
2010/05/13
19:44 UTC
Read the original article
Hit count: 352
Let's say I have the following code in a form that is triggered on some click event.
DoCmd.SetWarnings False
DoCmd.OpenQuery "AddSomeStuff"
DoCmd.OpenQuery "UpdateSomeOtherStuff"
DoCmd.OpenQuery "DeleteABunchOfCrap"
DoCmd.SetWarnings True
Can I assume that the three update queries I executed (in SQL Server) are not transactional in that they are run is separate transactions?
© Stack Overflow or respective owner