How to make multiple Transactions in Access
Printable View
How to make multiple Transactions in Access
You can nest transactions like this
ws.begintrans
ws.begintrans
ws.committrans
ws.committrans
if the transactions must be concurrent then
create two workspace objects.
(Use CreateWorkSpace method)
ws1.begintrans
ws2.begintrans