How do I change from database mode to file system mode for report...

Expand / Collapse
 

How do I change from database mode to file system mode for report storage and vice versa?


File system mode stores reports in the reports folder in the Reports root directory. These reports are stored as xml files. Database system mode stores reports in a database table. This table is the reports table.

To set file system mode for storing reports:

Find the global.asax file which should be in your Reports root directory. Open this file and find this line in the file:

public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig

Change this line to

publicclass CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig

To set database system mode for storing reports:

Find the global.asax file which should be in your Reports root directory. Open this file and find this line in the file:

public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig

Change this line to

public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig


Details
Type: FAQ
Options