i have a few stored procedures that do various updates and inserts to a few tables, when a new form is submitted. they are all called from a C# application i have.
right now everything is in a try catch
format, is there a way i can ensure that they have all successfully went through before actually commiting the changes to the database?
so let's say everything went through ok to the first 3 stored procedures, but the 4th one fails, i want to reverse what was already done in the first 3.
all or nothing type of deal.