Guides/Timeouts.md
... ...
@@ -0,0 +1,62 @@
1
+#Timeouts
2
+
3
+[[_TOC_]]
4
+
5
+* All timeouts are in number of seconds.
6
+** All implementations should be added to the Global.asax file.
7
+
8
+##Equals Drop Down
9
+
10
+###Purpose
11
+This setting allows the user to increase the database query time for building the drop down selection options at the Filters tab in the Report Designer. If you have a large or unoptimized database increasing this setting can help with proper reporting performance.
12
+
13
+###Implementation
14
+AdHocSettings.EqualsDropDownTimeout = 1000;
15
+
16
+##Equals Select
17
+
18
+###Purpose
19
+This setting allows the user to increase the database query time for building the drop down selection options at the Filters tab in the Report Designer. If you have a large or unoptimized database increasing this setting can help with proper reporting performance.
20
+
21
+###Implementation
22
+AdHocSettings.EqualsSelectTimeout = 1000
23
+
24
+##Oracle Command
25
+
26
+###Purpose
27
+Sets the time Izenda Reports will wait for an Oracle command to execute before timing out.
28
+
29
+###Implementation
30
+AdHocSettings.OracleCommandTimeout = 5000;
31
+
32
+##Preview Timeout
33
+
34
+###Purpose
35
+Sets the minumum time Izenda Reports will wait for a MS SQL command to execute before timing out.
36
+
37
+###Implementation
38
+AdHocSettings.PreviewTimeout = 500;
39
+
40
+##Schema Cache
41
+
42
+###Purpose
43
+Gets or sets the time span for schema caching.
44
+
45
+###Implementation
46
+Izenda.AdHoc.AdHocSettings.SchemaCacheTimeout = new TimeSpan(0, 0, 5, 0);
47
+
48
+##SQL Command
49
+
50
+###Purpose
51
+Gets or sets the wait time in seconds for database command dropdown values loading.
52
+
53
+###Implementations
54
+AdHocSettings.SqlCommandTimeout = 1000;
55
+
56
+##Data Source Drop Down
57
+
58
+###Purpose
59
+Gets or sets the timeout between starting loading dropdown values (in the DataSources dropdown at the Data Sources tab in the ReportDesigner) from server and redirecting to About page.
60
+
61
+###Implementation
62
+AdHocSettings.DataSourceDropDownTimeout = 10;
... ...
\ No newline at end of file