Home > Articles > Programming > Windows Programming

This chapter is from the book

Transactions and ADO.NET

The ADO.NET Connection object is used to work with transactions. As you'll see in the next few sections, the Connection object is used to initiate the transaction. Any command objects that need to enlist in the transaction are then assigned to the transaction. The transaction object itself is used to save, roll back, and perform other actions on the transaction.

Starting a Transaction

In ADO.NET, you can start a database transaction by calling the BeginTransaction() method of the Connection object, as seen in Listing 18.1.

Listing 18.1 Starting a New Transaction

'Create Connection
Dim conn as SqlConnection = new SqlConnection("Data Source=(local);" + 
                 "Initial Catalog=northwind;UID=sa;PWD=;")

'Create Command
Dim cmd as SqlCommand = new SqlCommand()
cmd.Connection = conn

'Connection must be open to start transaction
conn.Open()

'Create Transaction and apply it to command object
Dim myTrans = conn.BeginTransaction("TransactionName")

NOTE

In order to begin a new transaction, the Connection object must be open. If you attempt to start a new transaction without first calling the Open() method of the Connection object, an InvalidOperationException is thrown.

Notice that the BeginTransaction() method returns a SqlTransaction object. For the life of the transaction, you will use this object to manipulate the database transaction, as needed.

At this point, you might be tempted to start executing commands against the database. However, before you can send any queries to the database using this transaction, you must assign the transaction object to the Transaction property of the Command object as seen in the last line of Listing 18.1. This is slightly counterintuitive, because the Command object already has an associated Connection object assigned, and transactions operate over a connection. However, you must still remember this step.

CAUTION

Do not forget to assign the SqlTransaction object returned by the BeginTransaction() method to the Transaction property of the Command object. If you forget, an InvalidOperationException will be thrown by your code the first time you attempt to execute a query.

Now you're ready to make some database changes using the Command object. Feel free to be creative. You can even delete an entire table, if you like. Because you're executing all these changes in a transaction, it's very easy to roll back your changes and return to the table's original state.

CAUTION

Keep in mind that only changes made to the database through this Connection object will be in the transaction. Therefore, if you were to modify the data through any other means, such as SQL Enterprise Manager, those changes will not be rolled back.

Rolling Back a Transaction

As you process each of the individual database changes that comprise your database transaction, it's possible to undo or roll back any of the changes you've made to the database since beginning the transaction. For instance, alluding to the monetary transaction example from earlier this hour, if there is an error removing the funds from bank account A after placing the money in account B, you would definitely want to roll back the changes you've made and either retry the transaction at a later time, or flag the record for later examination.

To roll a transaction back to its original state, you just call the Rollback() method of the transaction object, as in Listing 18.2.

Listing 18.2 Rolling a Transaction Back

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>

<HTML>
<HEAD>
  <LINK rel="stylesheet" type="text/css" href="Main.css">
  <!-- End Style Sheet -->

  <script language="VB" runat="server" >
    Sub Page_Load(Source as Object, E as EventArgs)

     If IsPostBack then

      Dim sOutput as string

      'Create Connection
      Dim conn as SqlConnection = new SqlConnection("Data Source=" + _
             "localhost;Initial Catalog=northwind;UID=sa;PWD=;")

      'Create Command
      Dim cmd as SqlCommand = new SqlCommand()
      cmd.Connection = conn

      'Connection must be open to start transaction
      conn.Open()

      'Create Transaction and apply it to command object
      Dim myTrans = conn.BeginTransaction("TransactionName")
      cmd.Transaction = myTrans

      'Show Database before modifications
      GetAndBindData(datagrid1)

      'Execute Database Change #1 
      ExecuteSQL(cmd, "UPDATE Fruits SET Quantity = 4 " + _
              "WHERE Name = 'Apple'") 

      'Execute Database Change #2
      Try
        ExecuteSQL(cmd, "DELETE FROM FRUITS")
        Throw New Exception("A random horrible database error")
        myTrans.Commit()
      Catch
        myTrans.Rollback()
      End Try

      'Requery to make sure changes are gone
      GetAndBindData(datagrid7)

      conn.Close()

     Else
      '--- No post back --- 
      'Just display the fruit table as it is
      GetAndBindData(datagrid1)


     End If 'Postback

    End Sub

    Private Sub ExecuteSQL(cmd as SqlCommand, sSQL as string)

      cmd.CommandText = sSQL
      cmd.ExecuteNonQuery()

    End Sub

    Private Sub GetAndBindData( myDataGrid as _
                    System.Web.UI.WebControls.DataGrid )

      Dim conn as SqlConnection = new SqlConnection("Data Source=" + _
              localhost;Initial Catalog=Northwind;UID=sa;PWD=; ")
      Dim cmd as SqlCommand = new SqlCommand("SELECT name, " + _
                  "description, quantity FROM Fruits", conn)

      conn.Open()
      myDataGrid.DataSource = cmd.ExecuteReader()
      myDataGrid.DataBind()
      conn.Close()

    End Sub
  </script>

</HEAD>
<BODY>

<h1>Working With Transactions</h1>
<hr>



<form runat="server" id=form1 name=form1>
 <asp:label id=lblStatus runat="server" />

 <p>

 <input type="submit" Value="Run Queries">
 <table align="center" cellpadding=10 cellspacing=10>
  <tr>
   <td colspan=2 valign="center">
    <h3>Original Data:</h3>
    <asp:datagrid id=datagrid1 runat="server" />
    <br><br>
   </td>
  </tr>
  </tr>
   <td colspan=2>
    <h3>After rolling back transaction to beginning:</h3>
    <asp:datagrid id=datagrid7 runat="server" />
   </td>
  </tr>
 </table> 
 
</form>
<hr>

</BODY>
</HTML>

Listing 18.2 creates a transaction, performs some database changes, and then rolls these changes back. On line 28, the transaction is started using the BeginTransaction() method of the Connection object. On the following line, the transaction object is assigned to the Command object. Any queries executed using the cmd Command object are performed under the umbrella of this transaction.

The database is then displayed before modifications using the GetAndBindData() method on line 32. On lines 34–36, the first database change is made, changing the quantity of apples to 4. Lines 37–43 perform the next database change. Then, an error is simulated using the Throw() method on line 39, causing the Rollback() method to run in the Catch code block on line 41. Had there been no error, the transaction would have been committed and all database changes made final. However, because the Rollback() method was called instead, all changes made under this transaction are reverted back to their previous state.

Figure 18.1 The appearance of the Web form in Listing 18.2 after submitting the form.

As you can see in Figure 18.1, the code in Listing 18.2 displays a Web form. After you click the button labeled Run Queries, a connection to the database is opened and a transaction started. Database change #1 is made, and then the second change is attempted. The second database change is wrapped in a Try...Catch block. This enables you to check for an error and handle that error gracefully. In this case, the transaction is rolled back, canceling any changes. Otherwise, the transaction is saved.

Committing a Transaction

In Listing 18.2, after all database modifications have been successfully performed, the transaction is saved by using the Commit() method of the transaction object. This ends the transaction and makes all database changes permanent.

Canceling a Transaction

If an error had occurred during the second database modification in Listing 18.2, the error would have been caught by the Try...Catch block and the Catch portion of the code would have been executed. In this case, the Rollback() method of the transaction object would have been called, reversing all changes made to the database, leaving it in its original state.

Saving a Transaction

When working with database transactions, it's possible to save the transaction at any point. However, the term "saving" when applied to transactions is a bit misleading. The process is more like bookmarking a site than saving a file. After saving at a point in a transaction, you can revert back to that point, canceling any changes you might have made after saving.

In other words, let's say you initiate a transaction, and save the transaction after updating several hundred fields in the database. Suppose that later, after several other database modifications, an error occurs. Rather than rolling all the way back to the beginning, you can save your transaction after the first batch of queries is executed. Then, later you can roll back your changes to that saved point. However, this method can be dangerous if any table relationships are missing, creating an unstable database.

To save a database transaction at any point, you need only call the Save() method of the transaction object, and pass it the name you would like to use to reference the saved point. Saving a transaction often makes more sense when working with hundreds or thousands of database changes in a single transaction. Without saving, you'd be forced to roll back all of these changes in the case of an error!

The example in Listing 18.3 demonstrates this concept. Just as in the previous example, a database connection is opened and a transaction initiated. Some changes are made to the data in the database, the transaction is saved, some more changes are made, and then the transaction is rolled back to the saved point. The transaction is then committed, finalizing all the changes made up to the saved point. Figure 18.2 shows the appearance of the Web form after submitting the form.

Listing 18.3 Rolling a Transaction Back to a Saved Point

<%@ Page Debug="true" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>

<HTML>
<HEAD>
  <LINK rel="stylesheet" type="text/css" href="Main.css">
  <!-- End Style Sheet -->

  <script language="VB" runat="server" >
    Sub Page_Load(Source as Object, E as EventArgs)

     If IsPostBack then

      Dim sOutput as string

      'Create Connection
      Dim conn as SqlConnection = new SqlConnection("Data Source=" + _
              "localhost;Initial Catalog=northwind;UID=sa;PWD=;")

      'Create Command
      Dim cmd as SqlCommand = new SqlCommand()
      cmd.Connection = conn

      'Connection must be open to start transaction
      conn.Open()

      'Create Transaction and apply it to command object
      Dim myTrans = conn.BeginTransaction("TransactionName")
      cmd.Transaction = myTrans

      'Show Database before modifications
      GetAndBindData(datagrid1)

      'Execute Database Change #1
      ExecuteSQL(cmd, "UPDATE Fruits SET Quantity = 2 " + _
              "WHERE Name = 'Apple'")

      'Insert potentially hundreds of database changes here

      'Save Transaction
      myTrans.Save("SavePoint1")

      'Execute Database Change #2
      ExecuteSQL(cmd, "DELETE FROM FRUITS")

      'Oh no! We've made a horrible mistake.
      'Rollback to saved point
      myTrans.Rollback("SavePoint1")

      'Commit earlier changes
      myTrans.Commit()

      'Requery
      GetAndBindData(datagrid7)

      conn.Close()

     Else

      '--- No post back --- 
      'Just display the fruit table as it is
      GetAndBindData(datagrid1)

     End If 'Postback

    End Sub

    Private Sub ExecuteSQL(cmd as SqlCommand, sSQL as string)

      cmd.CommandText = sSQL
      cmd.ExecuteNonQuery()

    End Sub

    Private Sub GetAndBindData( myDataGrid as _
                    System.Web.UI.WebControls.DataGrid )

      Dim conn as SqlConnection = new SqlConnection("Data Source=" + _
              "localhost;Initial Catalog=Northwind;UID=sa;PWD=;")
      Dim cmd as SqlCommand = new SqlCommand("SELECT name, " + _
                  "description, quantity FROM Fruits", conn)

      conn.Open()
      myDataGrid.DataSource = cmd.ExecuteReader()
      myDataGrid.DataBind()
      conn.Close()

    End Sub
  </script>

</HEAD>
<BODY>

<h1>Working With Transactions</h1>
<hr>

<form runat="server" id=form1 name=form1>
 <asp:label id=lblStatus runat="server" />

 <p>

 <input type="submit" Value="Run Queries" id=submit1 name=submit1>
 <table align="center" cellpadding=10 cellspacing=10>
  <tr>
   <td colspan=2 valign="center">
    <h3>Original Data:</h3>
    <asp:datagrid id=datagrid1 runat="server" />
    <br><br>
   </td>
  </tr>
  </tr>
   <td colspan=2>
    <h3>After rolling back transaction to saved point:</h3>
    <asp:datagrid id=datagrid7 runat="server" />
   </td>
  </tr>
 </table> 

</form>
<hr>

</BODY>
</HTML>

Listing 18.3 is similar to the previous transaction code provided in Listing 18.2. Line 29 starts a transaction that is then assigned to the cmd Command object on the next line. The current state of the database is displayed using the GetAndBindData() method on line 33. A database change is then made on line 36, changing the quantity of apples from 2 to 4.

Shortly after on line 42, the transaction is saved using the Save() method of the transaction object. The following line of code then deletes all contents from the Fruit table. For the purposes of this example, that is undesirable. On line 49, the transaction is rolled back to the previous save point, before the deletion was performed. Line 52 uses the Commit() method to end the transaction and commit these database changes. Line 55 again shows the state of the database. As you can see in Figure 18.2, the quantity of apples is modified, but the results of the DELETE query were not saved.

Figure 18.2 Saving a database transaction.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020