FDO API Reference Feature Data Objects

enum ComparisonOperations
 

The FdoComparisonOperations enumeration lists the comparison operations available.

Parameters:
FdoComparisonOperations_EqualTo Test to see if the left and right expressions are equal
FdoComparisonOperations_NotEqualTo Test to see if the left and right expressions are not equal
FdoComparisonOperations_GreaterThan Test to see if the left expression is greater than the right expression
FdoComparisonOperations_GreaterThanOrEqualTo Test to see if the left expression is greater than or equal to the right expression
FdoComparisonOperations_LessThan Test to see if the left expression is less than the right expression
FdoComparisonOperations_LessThanOrEqualTo Test to see if the left expression is less than or equal to the right expression
FdoComparisonOperations_Like Test to see if the left expression matches the pattern specified by the right expression. Wildcard characters supported in the pattern are:
  • % Any string of zero or more characters;
  • _ Any single character;
  • [] Any single character within the specified range ([a-f]) or set ([abcdef]);
  • [^] Any single character not within the specified range ([^a-f]) or set ([^abcdef]).
Enumerator:
ComparisonOperations_EqualTo  Test to see if the left and right expressions are equal.
ComparisonOperations_NotEqualTo  Test to see if the left and right expressions are not equal.
ComparisonOperations_GreaterThan  Test to see if the left expression is greater than the right expression.
ComparisonOperations_GreaterThanOrEqualTo  Test to see if the left expression is greater than or equal to the right expression.
ComparisonOperations_LessThan  Test to see if the left expression is less than the right expression.
ComparisonOperations_LessThanOrEqualTo  Test to see if the left expression is less than or equal to the right expression.
ComparisonOperations_Like 
  • % Any string of zero or more characters
  • _ Any single character
  • [] Any single character within the specified range ([a-f]) or set ([abcdef]).
  • [^] Any single character not within the specified range ([^a-f]) or set ([^abcdef]).

Comments or suggestions? Send us feedback.