Calculate Report Query execution time

edited June 2012 in FastReport .NET
Hi,

we are developing a report designing application for a client.and we have enabled server side printing for the web solution.Now customer needs to know report query execution elapsed time and printing elapsed time separately. i am trying to use

Report.prepare() method to calculate report query execution time and Report.Print() method to calculate the printing time. inside print method do u all have any query executions ? i need to calculate the values separately. what will be the best way of doing it ?

tnx in advanced

Chaminda

Comments

  • edited 9:53AM
    Hello,

    report.Prepare() method executes a query and builds the report. The report building phase may take longer time than executing a query (especially if you build a report with matrix object - 1000 rows query may generate 1000000 cells matrix). So you can't calculate query execution time precisely.

    report.Print() method builds a report and prints it. You should probably use PrintPrepared() method instead of Print() - it just prints already prepared report. There is no queries executed at this phase, so the printing time may be calculated precisely.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.