problem withsqltransaction

J

John

i need advice to my problems as follow:

i need to update 3 table (say table a, table b and table c) using
sqltransaction (because i want all transaction either commit or rollback).
table c will be updated after table a and table b updated.
the problem is:
table c can not updated because of sqltransaction didn't update (commit) the
table a and b yet .
any idea how to solve this problem?
 
A

Armin Zingler

John said:
i need advice to my problems as follow:

i need to update 3 table (say table a, table b and table c) using
sqltransaction (because i want all transaction either commit or
rollback). table c will be updated after table a and table b
updated.
the problem is:
table c can not updated because of sqltransaction didn't update
(commit) the table a and b yet .
any idea how to solve this problem?


As the question is not VB.Net language specific, have a look at the ADO.Net
group: microsoft.public.dotnet.framework.adonet


Armin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top