Q&A

Q1: Can I enlist multiple command operations in the same transaction?
A1: Certainly! All you need to do is create another Command object and assign it the same Connection object. Then remember to assign the SqlTransaction object to it as well.
Q2:What happens to my transaction if the server crashes while it is processing?
A2: This is dependent upon your data source. However, using Microsoft SQL Server 7.0 or 2000, all changes made during the life of your transaction will be rolled back. Almost any transactional data source should operate in the same manner.
Q3:What if I do not explicitly call the Commit() method to save the transaction?
A3: If you do not call the Commit() method, the database changes made during the life of the transaction ...

Get Sams Teach Yourself ADO.NET in 24 Hours now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.