Click here to Skip to main content
Licence 
First Posted 1 Jun 2005
Views 69,204
Bookmarked 35 times

TransactionScope in .NET 1.1

By | 1 Jun 2005 | Article
Emulate TransactionScope functionality coming in .NET 2.0 with .NET 1.1.
 
Part of The SQL Zone sponsored by
See Also

Now: Declarative Database Transactions With ServicedComponent

Developers working with Microsoft SQL Server enjoyed declarative handling of transactions since Windows NT 4.0 days. With the .NET Framework, this usually means we need to inherit a class from ServicedComponent, apply TransactionAttribute to it, and use SetAbort/SetComplete methods to notify the framework if our DB operation succeeded or failed. The framework takes care of the rest.

Simple? Yes, but…

  • ServicedComponent requires you to sign your assemblies, the step considered by many developers as the unnecessary complication.
  • You can’t mix transactional and non-transactional methods in one class, which forces you to split a single logical CustomerService into CustomerReader and CustomerWriter or something like that.

Future: TransactionScope in .NET 2.0

In .NET 2.0, we are going to have the TransactionScope class which solves both problems. Used as braces around a code which must run inside a database transaction and, although not the declarative style anymore, it provides a nice clean model:

using (TransactionScope scope = new TransactionScope())
{
  // open connection
  // perform database operation, which is going to run inside the transaction
// call other method and if the other method creates a TransactionScope object
  // it will share the transaction with the current method

  // All is well:
  Scope.Complete();
}

The Future's Here

OK, the code above looks as good as I’d like it to be, but Whidbey isn’t coming to production machines near me for another year or so. I had to create my own solution using .NET 1.1, and here it is. In fact, the implementation is so embarrassingly simple that I now feel ashamed I didn’t figure it out earlier!

Usage:

using (TransactionScope scope = new TransactionScope())
using (SqlConnection conn = new SqlConnection(connString))
using (SqlCommand cmd = new SqlCommand(updateSql, conn))
{
  System.Diagnostics.Debug.Assert(
         System.EnterpriseServices.ContextUtil.IsInTransaction);
    
  conn.Open();
    
  int result = cmd.ExecuteNonQuery();

  // We call it success if exactly one record was updated:
  if (result == 1)
  {
    scope.Complete();
  }
}

Here’s the complete class:

// Copyright (c) 2005 Alexander Shirshov
//
// This code is free software; you can redistribute it and/or modify it.
// However, this header must remain intact and unchanged. Additional
// information may be appended after this header. Publications based on
// this code must also include an appropriate reference.
// 
// This code is distributed in the hope that it will be useful, but 
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
// or FITNESS FOR A PARTICULAR PURPOSE.

using System;
using System.EnterpriseServices;

namespace Omnitalented.EnterpriseServices
{
  public class TransactionScope : IDisposable
  {
    private bool succeded;

    public TransactionScope() : this(TransactionOption.Required, 
                                TransactionIsolationLevel.Any, 60)
    {
    }

    public TransactionScope(TransactionOption transactionOption) : 
           this(transactionOption, TransactionIsolationLevel.Any, 60)
    {
    }

    public TransactionScope(TransactionOption transactionOption, 
           TransactionIsolationLevel isolationLevel, int timeoutSeconds)
    {
      ServiceConfig cfg = new ServiceConfig();
      cfg.Transaction = transactionOption;
      cfg.IsolationLevel = isolationLevel;
      cfg.TransactionTimeout = timeoutSeconds;
            
      ServiceDomain.Enter(cfg);
    }

    public void Complete()
    {
      succeded = true;
    }

    public void Dispose()
    {
      if (succeded)
      {
        ContextUtil.SetComplete();
      } 
      else
      {
        ContextUtil.SetAbort();
      }
      ServiceDomain.Leave();
    }
  }
}

Please note: The code only works in Windows 2003 Server or Windows XP; this is a requirement for the System.EnterpriseServices.ServiceDomain class.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alexander Shirshov

Web Developer

Russian Federation Russian Federation

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralName using is not declare PinmemberBMWABCD6:34 23 Jul '08  
GeneralThis vs. .net2.0 TransactionScope + MSDTC Pinmemberbalazs_hideghety9:48 26 Mar '07  
QuestionUsage of Transaction Scope PinmemberVijay Kumar Raja Grandhi23:27 26 Apr '06  
AnswerRe: Usage of Transaction Scope PinmemberDominik4:34 8 Aug '06  
GeneralRe: Usage of Transaction Scope PinmemberDominik5:26 8 Aug '06  
GeneralRe: Usage of Transaction Scope PinmemberVijay Kumar Raja Grandhi23:53 9 Aug '06  
GeneralRe: Usage of Transaction Scope Pinmemberkheongchoon20:18 25 Sep '06  
GeneralRe: Usage of Transaction Scope PinmemberVijay Kumar Raja Grandhi23:22 22 Nov '06  
GeneralRe: Usage of Transaction Scope Pinmemberbalazs_hideghety9:51 26 Mar '07  
GeneralBusiness Layer PinsussAnonymous20:58 1 Sep '05  
GeneralRe: Business Layer PinmemberJoey Chömpff21:00 1 Sep '05  
GeneralRe: Business Layer Pinmemberbalazs_hideghety2:09 24 Jun '07  
QuestionTwo connections? two databases? Pinmemberscubaduba22:23 2 Jun '05  
AnswerRe: Two connections? two databases? PinmemberAlexander Shirshov22:56 2 Jun '05  
GeneralRe: Two connections? two databases? Pinmemberbalazs_hideghety9:53 26 Mar '07  
GeneralRe: Two connections? two databases? Pinmembersanjayjolapra22:54 22 Jun '07  
GeneralRe: Two connections? two databases? Pinmemberbalazs_hideghety2:12 24 Jun '07  
Check this out Smile | :)
http://www.codeproject.com/useritems/TsFix.asp[^]
 
C#, ASPX, SQL, novice to NHibernate

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 1 Jun 2005
Article Copyright 2005 by Alexander Shirshov
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid