Replacing Access Workspaces with ?? (1 Viewer)

ian_w

Registered User.
Local time
Today, 05:45
Joined
Jun 13, 2006
Messages
64
I have various routines that run in workspace transactions in VBA using DAO.

I've just figured out that these are no longer working now I have ODBC linked SQL tables :banghead:

What is the SQL alternative to an access workspace to allow rollback if an update fails? Can it be done from access VBA or do I have to do this on the SQL server itself?
 

Christos99

Registered User.
Local time
Yesterday, 21:45
Joined
Dec 19, 2013
Messages
24
Hi,

You can still do it from VBA using ADO instead of DAO.
Check out the BeginTrans, CommitTrans and RollbackTrans methods.

Cheers,
Chris
 

Users who are viewing this thread

Top Bottom