S
Savvoulidis Iordanis
I use Acc2000, but the question is general
I have a MDE file with the application, connected to the MDB data file.
When I want to start a transaction in my application, I write:
Dim wks As DAO.Workspace
Set wks = DBEngine.Workspaces(0)
wks.BeginTrans
... stuff ...
wks.CommitTrans or wks.Rollback
The question is :
Is the transaction opened in the MDE file or in the MDB file?
I came up with this question because I noticed an increase in the size of
the MDE file which does not have the data in order to be increased
but the application only. I think it should remain the same as the 1st MDE
creation.
If the code is wrong, how should I write it?
TIA
I have a MDE file with the application, connected to the MDB data file.
When I want to start a transaction in my application, I write:
Dim wks As DAO.Workspace
Set wks = DBEngine.Workspaces(0)
wks.BeginTrans
... stuff ...
wks.CommitTrans or wks.Rollback
The question is :
Is the transaction opened in the MDE file or in the MDB file?
I came up with this question because I noticed an increase in the size of
the MDE file which does not have the data in order to be increased
but the application only. I think it should remain the same as the 1st MDE
creation.
If the code is wrong, how should I write it?
TIA