workspace/transaction status property

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a status property (or way) to read the status of a transaction?

In other words, is there a property that indicates that .BeginTrans has been
issued, and after .CommitTrans is issued?

For years now, I've been managing this status using my own variable, and
today I'm fed up with it.
 
No.

DAO supports nested transactions, to 5 levels. Theoretically, it would also
be possible to have parallel transactions, so there is no simple flag to
tell you whether you are in a transaction or not.

Maintaining your own flag is the best approach.
 
Back
Top