Transaction Customized = more flexibility to the programmer
In FIBPlus we can make transactions customized
using keywords as:
read, write, wait, no wait, etc... all in custom menu for Transaction object
1
vote
Anonymous
shared this idea
Such functionality is implemented in IBDAC.
Here is a code example:
IBCTransaction.IsolationLevel := iblCustom;
IBCTransaction.Params.Clear;
IBCTransaction.Params.Add(‘wait’);
IBCTransaction.Params.Add(‘read_committed’);
IBCTransaction.Params.Add(‘rec_version’);
The same can be done in the desing-time using the transaction component’s designer form.