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?