I have two services talking to two different Data-stores (i.e SQL).I am using transactionscope: eg: using(TransactionScope scope = new TransactionScope())
Does the database connection have to be set inside a TransactionScope? Or can I set it in the ctor and then have instance methods create up a TransactionScope?
We are having problems on one machine, with the error message: \"MSDTC on server XXX is unavailable.\"
开发者_高级运维we have a cache which I would like to put some transaction scopes around so that any process have to explicitly \'commit\' the changes it wants to do to the cached objects and make it p
I am trying to solve an issue when using a Castle ActiveRecord TransactionScope which is rolled back.
I have a routine which uses a recursive loop to insert items into a SQL Server 2005 database The first call which initiates the loop is enclosed within a transaction using TransactionScope. When I fir
I\'m having problems with my ASP.NET web forms system. It worked on our test server but now we are putting it live one of the servers is within a DMZ and the SQL server is outside of that (on our net
I\'m trying to get a handle on whether we have a problem in our application with database connections using incorrect IsolationLevels.Our application is a .Net 3.5 database app using SQL Server 2005.
Using ASP.NET 3.5, Linq to SQL, SQL Server 2005 on Windows Server 2003. Running VS 2008 on XP SP3 locally.
I have a little proof-of-concept distributed transaction application that is doing a simple insert into two tables -- one a MS SQL Server table, the other an Informix Dynamic Server table. The problem