I\'ve got an IDbTransaction in a using statement but I\'m unsure if it will be rolled back if an exception is thrown in a using statement. I know that a using statement will
I believe that if there's an exception such that Commit() was never called, then the transaction will automatically rollback.
Commit()