What happens when BEGIN TRANS - COMMIT TRANS is done in one SP and Multiple SPs are executed in TransactionScope and error is thrown before completing scope.
So pseudo code is as follows
//Using TransactionScope() {
// executing SP1
// executing SP2
// executing SP3
// throw new Exception();
//}
SP2 contains code as below.
// BEGIN TRANS
// Update Statement1
// Update Statement2
// Update Statement3
// COMMIT TRANS
What will happen if we assume that transaction gets committed in SP2?
- Everything gets rolled back
- 3 statements in SP2 gets committed. Everything else gets rolled back?
I don't know if it matters or not but just in case, all the three SPs are executed using one connection object and the connection is getting closed and opened again between two ExecuteNonQuery statements.