Subject | RE: [IBO] IB_Query going into Search mode after post |
---|---|
Author | Kevin Curtis |
Post date | 2001-02-03T04:52:50Z |
Jason,
I tracked the problem down to this:
procedure TDataModule1.qrClientsAfterPost(IB_Dataset: TIB_Dataset);
begin
if IB_Dataset.IB_Transaction.Started then
IB_Dataset.IB_Transaction.Commit;
end;
If I comment out the two lines in the above function then my dataset does
NOT go into search mode.
Any idea as to why this would make the dataset enter into search mode?
Thanks!
Kevin
I tracked the problem down to this:
procedure TDataModule1.qrClientsAfterPost(IB_Dataset: TIB_Dataset);
begin
if IB_Dataset.IB_Transaction.Started then
IB_Dataset.IB_Transaction.Commit;
end;
If I comment out the two lines in the above function then my dataset does
NOT go into search mode.
Any idea as to why this would make the dataset enter into search mode?
Thanks!
Kevin