Out of memory in while loop
Posted: Fri 02 Apr 2010 03:16
I open big table for looking all record.
OraTable.Open();
while not OraTable.Eof do
begin
{something action with record}
OraTable.Next();
end;
OraTable.Close();
Table get > 1.000.000 records. Is it possible to clear the buffer after each statement Next
OraTable.Open();
while not OraTable.Eof do
begin
{something action with record}
OraTable.Next();
end;
OraTable.Close();
Table get > 1.000.000 records. Is it possible to clear the buffer after each statement Next