42dbcd2aff2e31809ddba51de3a313e3f4458254
API/CodeSamples/LazySpMetadataPulling.md
| ... | ... | @@ -7,9 +7,9 @@ |
| 7 | 7 | **Accepted Values:** true, false |
| 8 | 8 | **Default value:** false |
| 9 | 9 | **Impacted Features:** Report Design, Data Sources, InitializeReporting() |
| 10 | -**Purpose:** Gets or sets whether stored procedure metadata will be loaded at the same time as metadata for the rest of the schema. When true, stored procedure metadata will only be pulled when the stored procedure is executed. |
|
| 11 | -**Usage:** This setting, when set to true, is used to prevent Izenda from executing all stored procedures in VisibleDataSources on the database at initialization. |
|
| 12 | -**Caveats:** Initialization will be quicker when LazySpMetadataPulling is set to true, but individual reports may take longer to load (if the stored procedure has not been executed and cached by Izenda). This setting must be set prior to setting VisibleDataSources in the Settings. |
|
| 10 | +**Purpose:** Gets or sets whether stored procedure metadata will be loaded at the same time as metadata for the rest of the schema. When true, stored procedure metadata will only be pulled when the stored procedure is requested for use in a report. |
|
| 11 | +**Usage:** This setting must be set prior to setting VisibleDataSources in the Settings. When set to true, is used to prevent Izenda from executing all stored procedures in VisibleDataSources on the database at initialization. Izenda will still execute any stored Procedures used in reports if the schema is not cached or if the cached schema is older than the altered date of the stored procedure. |
|
| 12 | +**Caveats:** Initialization will be quicker when LazySpMetadataPulling is set to true, but individual reports may take longer to load (if the stored procedure has not been executed and cached by Izenda). |
|
| 13 | 13 | |
| 14 | 14 | ##Code Samples |
| 15 | 15 | ###Global.asax (C♯) |