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
{
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.
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.