Describes database supported predicates. Each member of the structure is a boolean value indicating whether the feature is supported or not.
You can find more information in comments below.
struct DbSupportedPredicates
{
bool Valid; // Indicates whether this structure contains valid data (it was successfully retrieved from data source)
bool Between;
bool Comparison;
bool Exists;
bool In;
bool IsNotNull;
bool IsNull;
bool Like;
bool MatchFull;
bool MatchPartial;
bool MatchUniqueFull;
bool MatchUniquePartial;
bool Overlaps;
bool QuantifierComparison;
bool Unique;
explicit operator String() const;
};
Namespace: | nitisa |
Include: | Nitisa/Db/DbSupportedPredicates.h |