How can I set Auto Commit off using TClientDataSet?

Oswaldo

Member
I use a TClientDataSet and provider connection to the DOA components. Every time I do ApplyUpdates to a TClientDataSet, it does a commit. How can I take control of the transaccion?
In some cases I need to do the commit by my self.

Thanks in advance,

Oswaldo.
 
You can set the (currently undocumented) run-time property TOracleDataSet.CommitProviderTransactions to False. In that case you need to provide the necessary transaction control functions.

------------------
Marco Kalter
Allround Automations
 
Back
Top