Subject Re: [ib-support] Record Count
Author Woody
From: "Mike Grover" <mike@...>
> Is there a way to get a record count from a query and
> have the data to?
>

If you are using IBX components, do a FetchAll. Or, you can do a Last, then
First to set the recordcount properly. This does take time witha a larger
result set, though. A better way, if your query is not real complex is to
use something like a Count(*) in a separate query first.

Woody