Click here to Skip to main content
Click here to Skip to main content

Using of .NET TransactionScope

By , 24 Jan 2010
 

Introduction

Working on the distributed database management system; we are familiar with using the SqlTransaction. The purpose of using Transaction is to get your SqlTransaction info / status from the front end and much more important is to add the rollback functionality to call, so that you can perform a smooth transaction on your client-server application module.

As I discussed earlier, we are familiar with SqlTransaction (.NET framework 2.0)... We will not discuss about using of SqlTransaction… .NET provides us with the System.Transaction assembly where you will find the System.Transactions.TransactionScope class. Using of TransactionScope() is much easier rather than the SqlTransaction such as ease of managing your transaction, need to write couple of code to manage, calling Commit, etc. A sample code snippet is given below:

Example

TransactionOptions txOptions = new TransactionOptions();
using (TransactionScope txScope =
      new TransactionScope(TransactionScopeOption.Required, txOptions))
     {
       try
          {
                // do something      
          	txScope.Complete();
          }
       catch (SqlException sqlError)
          {
                
          }
     }

Be careful when using this. If you are not careful to perform all steps of the transaction on the same connection, the transaction is treated as a distributed (multi database) transaction and incurs a rather steep performance penalty. Examine the Microsoft Enterprise Model application blocks to see how they managed this.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Md. Marufuzzaman
CEO
Bangladesh Bangladesh
He is the founder & CEO of MNH Technologies and working for urban and rural sectors to improve people’s lifestyle, better medical facilities, education, social business etc. He has over ten years of professional experiences in design and developing Client-Server, Multi-Tier, Database, Web based business software solutions, Enterprise Applications, API, WebAPI, Google Analytics implementation, Add-In, Documentation & Technical Writing etc for Windows / Mac using Microsoft SQL Server, Oracle, MySql, PS, C#, VB.NET, ASP.NET, PHP, RoR, Visual Basic etc. He has also more than two years experience in Mobile-VAS (Platform Development).
 
He worked for various software development & technology consulting. His core focus on technologies to create dynamic data-driven systems that add value to your business and dynamic technology consulting that builds advanced solutions for the industries across the various vertices.
 
He also work as a Solution Architect at Dhrupadi Techno Consortium Limited (DTCL) and responsible for analyzing business requirements and offered optimum solutions (multiple options), which would address all current requirements, provide flexibility for future growth and allow smooth transition between old system and new system.
 
He graduated with honors from The University of Asia Pacific, in Computer Science and Engineering. He was awarded as “Most Valuable Professional” (MVP) at 2010 and 2011 by CodeProject.com and also selected as a Mentor of CodeProject.com
 
Specialties: Software Development Management, System Integration, Data Warehouse Architecture, Virtualization.
Follow on   Twitter

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.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionVBmemberMohammad Safari Mehmandosty2-Sep-12 2:13 
would you please convert it into vb.net? i use vb2008 and i cant use transactionscope...
i want to know what is the equivalent of transactionscope?
AnswerRe: VBmentorMd. Marufuzzaman2-Sep-12 4:13 
Hay,
Thanks for visiting...anyway try the link below:
www.developerfusion.com[^]
Thanks
Md. Marufuzzaman


I will not say I have failed 1000 times; I will say that I have discovered 1000 ways that can cause failure – Thomas Edison.

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 24 Jan 2010
Article Copyright 2010 by Md. Marufuzzaman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid