Subject Re: [IBO] Howto iterate through all selected rows
Author Helmut Steinberger
"Am Thu, 22 Nov 2001 06:55:32 +0000 (UTC), schrieb mirco@...

>How do I iterate through all selected rows in a query, that is have a
>loop that gets executed for every row where the selected property is
>true.

query1.sql.text := 'select * from xxx';
query1.first;
while not query1.eof do
begin
........ do anything you want
query1.next;
end;