Subject RE: [IBO] Determining if there is only one record in a result set
Author Jason Wharton
> Is there an easy / good performance way of determining if a
> result set
> contains only one record?
>
> I am using TIBOQuery and want to avoid using .recordcount or
> trying to loop through the result set.

Set InternalDataset.BufferRowNum := 2 and then check if
InternalDataset.BufferEof.

Jason