RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TMtsDataModule.EnableCommit Method

Allows clients to complete transactions without releasing state information.

Pascal
procedure EnableCommit;
C++
__fastcall EnableCommit();

Call EnableCommit to indicate that the MTS data module can complete its current transaction without releasing state information (properties). Unlike the SetComplete method (which also signals that the current transaction can be committed), EnableCommit does not allow the data module to be deactivated. This lets the MTS data module preserve state information over multiple interface calls, while still allowing clients that have enlisted the data module in a transaction to commit. 

By default, transactions can be completed when interface calls finish, unless the DisableCommit method is called. There is no need to call EnableCommit unless the MTS data module has previously called DisableCommit.

Note: Although EnableCommit permits the current transaction to be completed, it does not automatically commit the transaction. The client that enlisted the MTS data module in a transaction must still explicitly commit that transaction. If the transaction was started automatically (because the MTS data module requires a transaction for its interface calls), the transaction is not committed until the data module calls SetComplete.
 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!