Set whether the predicate fails on empty data.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub setFailEmptyPred( _ 
   ByVal fail As Boolean _ 
)
C#
public void setFailEmptyPred(
   bool fail
)
C++
public:
 void setFailEmptyPred(
   bool fail
) sealed 
J#
public void setFailEmptyPred(
   bool fail
)
JScript
public  function setFailEmptyPred(
   fail : bool
)

Remarks

This applies to filtering predicates. If this is true predicates that encounter empty data, either in the query or record value, fail. The treatment of the failed predicate is then controlled by the setting of the Invalid Predicate flag. If this is false the predicate is evaluated against the empty data assuming a default value appropriate to the data type of the field.

The default value for this flag is true.

See Also