This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/
Izenda Reports features two methods for saving reports: file system mode and database mode. The default is the Filesystem mode. The table shown will help you choose whether or not you want to use database or filesystem mode. You should choose the mode that best suits your company's needs.
Database | Filesystem |
---|---|
Slower to access saved reports | Faster to access saved reports |
Uses your database security features | Allows customized security implementation |
No data is stored on the server | Able to customize the way reports are saved and shared |
No default behavior changes required | Behavior implementation required |
Copying data between databases could be troublesome | Easily copy reports between servers for use and testing |
Requires modifications to the Schema | Schema of database is not changed at all |
This is the default saving mode for Izenda Reports. In this mode, Izenda Reports saves to a folder called "Reports" by default. No data is stored in the database that is being queried by Izenda Reports.
The mode is set in the global.asax file, which is found in the root directory to which you installed Izenda Reports. In the example below, the setting in bold is the actual code that must be changed to set filesystem mode.
//C# public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig
'VB.NET Public Class CustomAdHocConfig Inherits Izenda.AdHoc.FileSystemAdHocConfig
One of the advantages of file system mode is that it allows for custom saving behavior. There are four main methods that control creating, loading, saving, and deleting reports:
Each of these methods may be over-ridden in order to implement custom behavior. Please see the global.asax example and the Izenda Reports API for examples. To set the default reports folder path that Izenda Reports should use, you must first create a folder in the file system and then ensure that the NETWORK SERVICE machine account has read and write access (if using ASP.NET 2.0) or that the ASP.NET machine account has read and write access (if using ASP.NET 1.1). Once this is complete, we must now tell Izenda Reports which folder to use by setting the ReportsPath property as shown in the example.
//C# public static void InitializeReporting() { Izenda.AdHoc.AdHocSettings.ReportsPath = "\SomePath"; }
'VB.NET Public Shared Sub InitializeReporting() Izenda.AdHoc.AdHocSettings.ReportsPath = "\SomePath" End Sub
This is the alternative saving mode for Izenda Reports. Izenda Reports creates a default table in the database, IzendaAdHocReports, to save the report data. In this mode, no data is stored in the Reports folder in the Izenda Reports directory. To set the default table which Izenda Reports should use, you must first create a table in the database and then ensure that the NETWORK SERVICE machine account has owner access if using ASP.NET 2.0 or that the ASP.NET machine account has owner access if using ASP.NET 1.1. Now tell Izenda Reports which table to use by setting the "SavedReportsTable" property as shown in the example.
To set Database Mode in our global.asax, we simply need to have the global.asax inherit the appropriate base class. We will then have a few configuration settings that become available.
//C# public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig
'VB.NET Public Class CustomAdHocConfig Inherits Izenda.AdHoc.DatabaseAdHocConfig
This is the most essential setting to specify when using Database Mode. However, it is not required. If it is not specified, Izenda will create and use a table called "IzendaAdHocReports".
//C# public static void InitializeReporting() { Izenda.AdHoc.AdHocSettings.SavedReportsTable = "SomeTableName"; }
'VB.NET Public Shared Sub InitializeReporting() Izenda.AdHoc.AdHocSettings.SavedReportsTable = "SomeTableName" End Sub
It is possible to copy the reports when necessary to the Reports folder in the Izenda Reports directory by using the "Administrative Settings" button on the toolbar in the report designer. In the status screen, click "Copy reports from database to file system." This will place the files in the Reports folder in the Izenda Reports directory.
Last edited by Joseph Adams, 2015-02-20 10:16:04