1
vote
1answer
47 views

TransactionScope rollback with Visual Basic.net and SQL Server 2008

I'm learning how to use transactionScope with Visual Basic.net in Visual Studio 2008 and I'm trying to make and easy query updating some data and the launching an exception, but the transactionScope ...
0
votes
0answers
24 views

Using a TransactionSccope to test Awaitable function results in a time-out

EDIT: This problem was already discussed and seemingly resolved here. I am currently writing unit tests for a DbContext. In order to restore the database (LocalDb) to its previous state after each ...
0
votes
0answers
105 views

The underlying provider failed on EnlistTransaction; Cannot access a disposed object

Please see the following exception and stacktrace which appears to indicate I'm attempting to enlist in a disposed transaction: System.Data.EntityException: The underlying provider failed on ...
1
vote
1answer
33 views

Cannot access Transaction in method

I've created an implicit transaction like so: Using ts As New TransactionScope(TransactionScopeOption.Required, New TimeSpan(1, 0, 0, 0)) MethodA() ts.Complete() End Using MethodA() in turn calls ...
0
votes
1answer
123 views

Nested TransactionScope Rollback - Is it possible?

I am trying to wrap two TransactionScopes within another TransactionScope, but when I run the program and an error is triggered in the 2nd transaction scope, the 1st transaction is not rolled back. Is ...
0
votes
2answers
97 views

Need For a TransactionScope Which Won't Rollback With An Exception

I have Some Command Like Insert, Update, Create and so on that i want to run them in some database in a SQL instance. i use transaction scope for this and i want to run all of the commands on all ...
3
votes
3answers
107 views

Is this .NET/SQL Server transaction scenario possible?

I just realized that I fundamentally don't understand how .NET/SQL Server transactions work. I feel like I might pushing the envelop on "there's no such thing as a dumb question", but all of the ...
1
vote
0answers
137 views

Why isn't my DbContext enrolling in my TransactionScope?

I'm using EF code first, and I can't seem to get my query to run in the context of a TransactionScope. I've seen dozens of examples of doing exactly this, and yet my insert is not transactioned; this ...
1
vote
2answers
2k views

Begin transaction in VB.net AND SQL Server 2008

I begin a transaction in vb.net. I execute a stored procedure on SQL Server 2008. That stored procedure contains BEGIN TRANSACTION. It fails, and ROLLBACK in CATCH block runs... BEGIN CATCH IF ...
0
votes
1answer
115 views

Two connections under one Transaction

I searched araound and having some difficulties in implementing one scenario with SQL Server 2000 and sybase. I have two SQL servers on different locations naming ServerA (MSSQL Server) and ServerB ...
1
vote
1answer
168 views

SqlException inside TransactionScope

I'm currently working on a legacy project in VB.NET 2.0. The project has a very funny DAL-layer which does not incorporate transactions :-| Anyway, it's my job to make some parts of the program ...
0
votes
1answer
386 views

Setting the database connection when using a 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? EDIT: e.g. Public Sub New() Dim ...
0
votes
1answer
233 views

Instantiating TransactionScope returns null

I have some VB.NET code that creates a TransactionScope instance: LoggingUtility.LogDebug("UpdateCallTable", "SatComCallDataImporter", "About to associate call data with contracts") Using ts = New ...