PDA

Click to See Complete Forum and Search --> : How make Multiple Transactions in Access


kishore
Jun 22nd, 1999, 05:47 PM
How to make multiple Transactions in Access

jim
Jun 22nd, 1999, 10:57 PM
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