Problem with memory
My company want buy FR3 and now I testing FR3, but I have problem with memory. When I use frxReport and get all date from table (select * from table) I see message: "The following error(s) have occured: Out of memory." Aplication get all free memory - 150-200 MB It's problem i see only when i get much records (150 000 record). How I can make big raports?
Daban
Daban
Comments
Daban
FR3 dont work well for me and I need help. Mayby uoy need created more than 990 pages report.
I prepare Firebird database (1 table, 20 rows) and small apllication (1 button, 1 report), and special SQL Query (3200000 rows). I send e-mail to you with this application, and please chek it. In my computer i see error near 3500 report page.
Daban
Daban
Daban
procedure TForm1.ReportClick(Sender: TObject);
begin
while not IBQuery1.Eof do
IBQuery1.Next;
end;
you'll get the same error. You need to turn off query buffer or smth like this - probably the query holds all data in the ram.
You say it's problem with IB Components, but when I use components inside fast report (left, bottom corner: add IBX Database, add IBX Query) I have that same problem. Do you use IBcomponents inside Fast report? Mayby, but I see
IBXQuery1 : TfrxIBXQuery
FR3 components has that same problem as IB components.
If you want I can send you next example when i have problem with TfrxIBXQuery.
Daban
PS. If you know, how I can build big raports, please told me.
Milan Tomes
Out of memory errors disapears.