Click or drag to resize

DataFuncOptions Enumeration

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum DataFuncOptions
Members
  Member nameValueDescription
NoResolve1 Do not resolve the SQL expression for embedded functions.
TableIsComplex2 Assume that table parameter does not represent a simple table and may contain inner joins with other tables. For example, in SQL Server the table name in the EXISTS test will not be decorated with 'WITH (NOLOCK)'.
AllowShortTimeout4 Normally command timeouts are limited to a minimum of 30 seconds as substantially shorter timeouts are typically problematic in production environments at peak load. However, when this option is set, the minimum is not enforced. This option should be used only with careful consideration. Note, however, that a zero timeout means to NEVER timeout and this is disallowed.
RefreshCache8 When using the DBLookupCache method, this will clear any cached value out of thread storage and force the value to be looked up using the provided parameters.
See Also