vote up 4 vote down star

I am current writing an application that will require multiple inserts, updates and deletes for my business entity. I am using the TransactionScope class to guarantee all the stored procedures can commit or roll back as a single unit of work.

My question is, I am required to also use COMMIT TRAN and ROLLBACK TRAN is each of my stored procedures if I am using the TransactionScope class in my .NET class library?

flag

77% accept rate

3 Answers

vote up 2 vote down check

Hi, ON 2005 its not necessary, on 2000 I would ,Also, i usually put the transactionscope in a "using" block.

There are some performance issues when using it on 2000 and older vs 2005.

See here

Thanks

link|flag
I am using SQL Server 2005. Thanks for the information – Michael Kniskern Oct 9 '08 at 23:58
vote up 5 vote down

No, you don't need explicit transactions if using TransactionScope for your transactions - however: important you should probably set Transaction Binding=Explicit Unbind; in the connection string. The full details are here, but otherwise you can end up with the first few operations getting rolled back, and the last few committing (or rather, running outside of any transaction).

link|flag
vote up 0 vote down

You shouldn't need to - it should be handled within the TransactionScope. It does depend a little bit as to exactly what you are doing and how you are handling transaction (explicit or implicit) More HERE

link|flag
I am handling only explicit transactions. – Michael Kniskern Oct 9 '08 at 23:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.