Subject Re: [ib-support] I think I found the solution
Author Dimitry Sibiryakov
On 24 May 2002 at 15:17, Vinicius wrote:

>And another question is, if the problem is the many transactions why
>it just occurs when I have open and close one of the transaction many
>times:
>
>Timer1Timer(sender : TObject)
>begin
> IBTransaction.CommitRetaing;
> IBQuery1.Close;
> IBQuery1.Open;
>end;

If you close the IBQuery anyway, why do you use CommitRetaining?
Try simple Commit. And I'd suggest you to close the query before
commiting, not after.
Commit retaining is a relatively new feature and I use it with a
care.

SY, Dimitry Sibiryakov.