Subject | Re: TIB_Query.next consume memory? |
---|---|
Author | Aage Johansen |
Post date | 2002-09-27T20:52:31Z |
anfisoft wrote:
And, as Thomas noted, a TIB_Cursor is better for this.
--
Aage J.
>I think your 'open' is redundant - 'first' is sufficient.
> My really huge Query-result is about 130.000 records big. I have to
> look at each of the records for some reason and coded:
>
> with IB_Query1 do
> begin
> open;
> first;
> while not(eof) do
> begin
> // here some outcommented code
> next;
> end;
> close;
> end;
>
And, as Thomas noted, a TIB_Cursor is better for this.
--
Aage J.