Guides/Timeouts.md
... ...
@@ -5,7 +5,7 @@
5 5
* All timeouts are in number of seconds.
6 6
** All implementations should be added to the Global.asax file.
7 7
8
-##Equals Drop Down
8
+##[Equals Drop Down](http://wiki.izenda.us/API/CodeSamples/EqualsDropDownTimeout)
9 9
10 10
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.
11 11
... ...
@@ -15,14 +15,14 @@ AdHocSettings.EqualsDropDownTimeout = 1000;
15 15
16 16
##[Equals Select](http://wiki.izenda.us/API/CodeSamples/EqualsSelectTimeout)
17 17
18
-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.
18
+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. This setting is deprecated.
19 19
20 20
```csharp
21 21
AdHocSettings.EqualsSelectTimeout = 1000
22 22
```
23
-##Oracle Command
23
+##[Oracle Command](http://wiki.izenda.us/API/CodeSamples/OracleCommandTimeout)
24 24
25
-Sets the time Izenda Reports will wait for an Oracle command to execute before timing out.
25
+Sets the time Izenda Reports will wait for an Oracle command to execute before timing out. This setting is deprecated.
26 26
27 27
```csharp
28 28
AdHocSettings.OracleCommandTimeout = 5000;
... ...
@@ -34,7 +34,7 @@ Sets the minumum time Izenda Reports will wait for a MS SQL command to execute b
34 34
```csharp
35 35
AdHocSettings.PreviewTimeout = 500;
36 36
```
37
-##Schema Cache
37
+##[Schema Cache](http://wiki.izenda.us/API/CodeSamples/SchemaCacheTimeout)
38 38
39 39
Gets or sets the time span for schema caching.
40 40
... ...
@@ -54,4 +54,12 @@ Gets or sets the timeout between starting loading dropdown values (in the DataSo
54 54
55 55
```csharp
56 56
AdHocSettings.DataSourceDropDownTimeout = 10;
57
+```
58
+
59
+##[UltimateDbCommandTimeout](http://wiki.izenda.us/API/CodeSamples/UltimateDbCommandTimeout)
60
+
61
+Gets or sets a timeout that overrides all other timeouts.
62
+
63
+```csharp
64
+AdHocSettings.UltimateDbCommandTimeout = 10;
57 65
```
... ...
\ No newline at end of file