how could I make TIBCQuery use the UpdateTransaction when the SQL called with execute is an UPDATE/INSERT?
Example:
Code: Select all
qy.Transaction := readOnlyTrans;
qy.UpdateTransaction := updTrans;
qy.SQL := 'UPDATE Client SET code=code+1';
qy.Execute;