Savepoints

Rolling back a transaction cancels the effect of all statements in that transaction. In some cases, it is only necessary to roll back a portion of the transaction. This can be done using savepoints.

A savepoint is created using the Save( ) method of the Transaction object. The method takes a string argument specifying the name of the savepoint. A transaction is rolled back to the savepoint by calling the RollBack() method and specifying the name of the savepoint as the optional argument. Savepoints are supported only by the SQL .NET managed data provider; nested transactions can be used with the OLE DB data provider to accomplish a similar result. The following example demonstrates how to use savepoints:

String connString = "Data Source=(local);Integrated security=SSPI;" + "Initial Catalog=Northwind;"; SqlConnection conn = new SqlConnection(connString); conn.Open(); SqlTransaction tran = conn.BeginTransaction(); //create command and enlist in transaction SqlCommand cmd = new SqlCommand("InsertCustomer", conn, tran); cmd.CommandType = CommandType.StoredProcedure; SqlParameterCollection cparams = cmd.Parameters; cparams.Add("@CustomerID", SqlDbType.NChar, 5, "CustomerID"); cparams.Add("@CompanyName", SqlDbType.NVarChar, 40, "CompanyName"); // ... code to define remaining parameters try { // insert a record into the table cmd.Parameters["@CustomerID"].Value="CUST1"; // ... set the other parameters cmd.ExecuteNonQuery(); } catch (Exception ex) { tran.Rollback(); Console.WriteLine( ...

Get ADO.NET in a Nutshell 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.