Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is practical use of System.Transactions?

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?

like image 374
Akash Kava Avatar asked Aug 21 '10 09:08

Akash Kava


People also ask

What are system transactions?

The System. Transactions infrastructure makes transactional programming simple and efficient throughout the platform by supporting transactions initiated in SQL Server, ADO.NET, MSMQ, and the Microsoft Distributed Transaction Coordinator (MSDTC).

What is the use of transaction?

A transaction is a completed agreement between a buyer and a seller to exchange goods, services, or financial assets in return for money. The term is also commonly used in corporate accounting. In business bookkeeping, this plain definition can get tricky.

What is an application transaction?

An application transaction is the gap between an application interface interaction and its result visualization. Several factors affect the time that an application takes to fill each gap. They mostly have to deal with software optimization, hardware resources and telecommunications channels.


2 Answers

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.
like image 177
Ladislav Mrnka Avatar answered Oct 21 '22 03:10

Ladislav Mrnka


A Transaction will do the necessary locking for you. Also, there is an implicit Rollback, when the transaction is Disposed at the end of its scope if it was not committed by Complete() (as suggested by the comments). So in case there is an exception, all operations are rolled back automatically and no change will take place in the database. For instance, if the second query fails, it will also make the changes of the first query to be discarded.

However for the StringWriter, it will still contain messages up to the point of failure (for example

Rows to be affected by command1: {0}
ApplicationException Message: {0}

can both appear in your log after this code.

As for creating an RDBMS with this class, I'm not really sure I understand your question. If you want to actually create a relational dabase management system, I would say you are probably looking at the wrong place. If you mean you want to access an RDBMS via Transaction, I would say, it depends on your needs, ie. if you need Transactions that can guarantee that your statements will run in order and in an all-or-none fashion, then yes, Transaction is a good place to start.

like image 45
Zaki Avatar answered Oct 21 '22 03:10

Zaki