#include <RecordFileScan.h>
Public Attributes | |
AttributeType | type |
The types of the attribute and value being compared. | |
int | attrLength |
The lengths of the attribute and value. | |
int | attrOffset |
The offset of the attribute within the record. | |
ComparisonOp | compOp |
The comparison to be performed. | |
union { | |
int value_i | |
The value as an integer (use when type == INTEGER). | |
float value_f | |
The value as a float (use when type == FLOAT). | |
const char * value_str | |
The value as a string (use when type == STRING). | |
}; |
Variant structure for specifying RecordFileScan conditions, which have the form
attribute OP value
where attribute comes from the record being scanned, OP is one of <,>,=, etc, and value is a constant.