(DataBasics
Normally, When BusinessLayer.TransactionBegin is called a DbTransaction Object is added to the collection with a default key value. This default transaction will be used.
When do I need simultaneous transactions ? I mean, When will be more than one transactions in that collection. So I will follow a key.
Let me put my question more clear since i know about transactional processing :
I wonder whether "transaction key" issue corresponds to savepoint_varible in
the following (Transact-SQL) MS SQl Server command
SAVE { TRAN | TRANSACTION } { savepoint_name | @savepoint_variable } [ ; ] ( MS SQL SERVER)
As you know same command in oracle is
SAVEPOINT <savepoint id>
I hope my question is more clear now.
Kind regards....