Search Results

3
votes
1answer
250 views

SQL Server 2000 and System.Transactions.TransactionScope()

Is it possible to create LIGHTWEIGHT transactions using TransactionScope() with SQL2000? Or if not, is there a workaround using CommitableTransaction and/or something similar? So the answer …
3
votes
6answers
620 views

Can I create a Database Deadlock test in Nunit?

In this asp.net I'm cleaning up it's possible for deadlocks to occur. I want to make sure that the code deals with them properly, so I'm trying to write NUnit tests which trigger a deadlock..... …