no.of pdfs generation and comparison with crystal report

Stimulsoft Reports.NET discussion
Post Reply
ramesh55
Posts: 9
Joined: Mon Aug 19, 2013 12:16 pm

no.of pdfs generation and comparison with crystal report

Post by ramesh55 »

hi frnd,

I need to develop a reports with a tool which can give good designing facility and performance compared to crystal reports.

well using crystal reports i can able to generate 23 reports per a second and around 1300reports per 10 minutes.

but using stimulsoft its consuming more time rather than crystal reports. its consuming around 23 minutes to generate the pdfs. i am generating pdfs for same users.but stimulsoft cosuming more time. how to reduce the time to generate.

following is the code what i have implmented.


if (ds.Tables.Count > 0)
{
foreach (DataRow DR in ds.Tables[0].Rows)
{
objStiReport.DataSources["Reportvalues"].Parameters["soa_id"].Value = DR["soa_id"].ToString(); //passing arguments
// objStiReport.DataSources["Reportvalues"].Parameters["Addresstype"].Value = "BIL"; //passing arguments

objStiReport.Compile();
objStiReport.Render(true);
StiorderDetail.Report = objStiReport;
StiorderDetail.Report.ExportDocument(StiExportFormat.Pdf, Server.MapPath("~/Reports/OrderDetails/" + DR["soa_id"].ToString() + "_1.pdf"), objStiPdfExportSettings); // generating pdf file in a given location
StiorderDetail.Dispose();
}
}

regards
ramesh
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: no.of pdfs generation and comparison with crystal report

Post by Alex K. »

Hello,

Please try to see the following series of articles about optimization reports on our blog:
part 1:
http://blog.stimulsoft.com/articles/optimizing-reports
part 2:
http://blog.stimulsoft.com/articles/opt ... rts-part-2
part 3:
http://blog.stimulsoft.com/articles/opt ... rts-part-3

Thank you.
Post Reply