Subject Re: [IBO] Threaded quiries
Author Louis Louw
thanx for the help
I'm still getting the locks though - so could you please verify that this
code is correct?
thanx
================
on Create
FSession := TIB_Session.Create(nil);
FConnection := TIB_Database.Create(FSession);
FTransaction := FConnection.DefaultTransaction;

and on Destroy
FConnection.Disconnect;
FSession.Free;
FConnection.Free;
================
Louis