Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1022469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:28:15+00:00 2026-05-16T11:28:15+00:00

I have seen System.Transactions namespace, and wondered, can I actually make a RDMBS with

  • 0

I have seen System.Transactions namespace, and wondered, can I actually make a RDMBS with this namespace usage?

But when I saw some examples, I do not understand how System.Transactions does anything beyond simple try catch and getting us success/failure result?

This is the example on MSDN’s website, I know it may be very simple but I am unable to understand the benefit in this sample, can someone tell me what is difference between simple try/catch and Transaction scope in this following sample.

If I am supposed to make a RDBMS (create my own RDMBS), I understand we have to write lots of logs to disk of the operations we execute and at the end we undo those operations in the case of rollback, but here there is nothing about undoing anything.

// This function takes arguments for 2 connection strings and commands to create a transaction 
// involving two SQL Servers. It returns a value > 0 if the transaction is committed, 0 if the 
// transaction is rolled back. To test this code, you can connect to two different databases 
// on the same server by altering the connection string, or to another 3rd party RDBMS by 
// altering the code in the connection2 code block.
static public int CreateTransactionScope(
    string connectString1, string connectString2,
    string commandText1, string commandText2)
{
    // Initialize the return value to zero and create a StringWriter to display results.
    int returnValue = 0;
    System.IO.StringWriter writer = new System.IO.StringWriter();

    try
    {
        // Create the TransactionScope to execute the commands, guaranteeing
        // that both commands can commit or roll back as a single unit of work.
        using (TransactionScope scope = new TransactionScope())
        {
            using (SqlConnection connection1 = new SqlConnection(connectString1))
            {
                // Opening the connection automatically enlists it in the 
                // TransactionScope as a lightweight transaction.
                connection1.Open();

                // Create the SqlCommand object and execute the first command.
                SqlCommand command1 = new SqlCommand(commandText1, connection1);
                returnValue = command1.ExecuteNonQuery();
                writer.WriteLine("Rows to be affected by command1: {0}", returnValue);

                // If you get here, this means that command1 succeeded. By nesting
                // the using block for connection2 inside that of connection1, you
                // conserve server and network resources as connection2 is opened
                // only when there is a chance that the transaction can commit.   
                using (SqlConnection connection2 = new SqlConnection(connectString2))
                {
                    // The transaction is escalated to a full distributed
                    // transaction when connection2 is opened.
                    connection2.Open();

                    // Execute the second command in the second database.
                    returnValue = 0;
                    SqlCommand command2 = new SqlCommand(commandText2, connection2);
                    returnValue = command2.ExecuteNonQuery();
                    writer.WriteLine("Rows to be affected by command2: {0}", returnValue);
                }
            }

            // The Complete method commits the transaction. If an exception has been thrown,
            // Complete is not  called and the transaction is rolled back.
            scope.Complete();

        }

    }
    catch (TransactionAbortedException ex)
    {
        writer.WriteLine("TransactionAbortedException Message: {0}", ex.Message);
    }
    catch (ApplicationException ex)
    {
        writer.WriteLine("ApplicationException Message: {0}", ex.Message);
    }

    // Display messages.
    Console.WriteLine(writer.ToString());

    return returnValue;
}

In above example what are we committing? I guess SQL Client library will do everything right? Does this mean that System.IO.StringWriter will either contain all success text or all failure text? or is there any locking between scope of TransactionScope?

  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:28:16+00:00Added an answer on May 16, 2026 at 11:28 am

    First of all TransactionScope is not the same as try/catch. TransactionScope is by the name scope of a transaction. Transaction in scope has to be explicitly commited by calling Complete on the scope. Any other case (including exception raised in scope) results in finishing using block which disposes the scope and implicitly rollback the incomplete transaction but it will not handle the exception.

    In basic scenarios transaction from System.Transactions behaves same as db client transaction. System.Transactions provides following additional features:

    • API agnostic. You can use same transaction scope for oracle, sql server or web service. This is important when your transaction is started in layer which is persistance ignorant (doesn’t know any information about persistance implementation).
    • Automatic enlistment. If specified on connection string (default behavior). New database connection automatically enlists into existing transaction.
    • Automatic promotion to distributed transaction. When second connection enlists to transaction it will be automatically promoted to distirbuted one (MSDTC is needed). Promotion also works when you enlist other coordinated resource like transactional web service.
    • etc.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Today I have seen this weird magic NTFS system supports: each file can have
As some may have seen in .NET 4.0, they've added a new namespace System.Threading.Tasks
I have seen this question asked previously but can not find a clear explanation
I am new at paypal payment system... I have seen this been done, but
How to build a simple recommendation system? I have seen some algorithms but it
I have seen this question answered in reference to Bash, but can't find one
I am a newbie in cryptographic system but i have seen many sources tell
I have seen that you can either do using System.IO and use Path.GetDirectoryName(blah blah)
How can I load a HTML from the local file system? I have seen
I have seen similar questions which attempt to solve this issue, but none seem

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.