Subject RE: [IBO] RecordCount
Author Walter Fordham
I will this work for recordCount?

var q:TIBCursor;
total_records:integer;
begin

with q do begin
sql.add('SELECT * FROM TABLE1');
open;
last;
total_records:=RowNo;
end;

end;