Describes database supported relation join operators. 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 DbSupportedRelationJoinOperators
{
    bool Valid; // Indicates whether this structure contains valid data (it was successfully retrieved from data source) 
    bool CorrespondingClause;
    bool CrossJoin;
    bool ExceptJoin;
    bool FullOuterJoin;
    bool InnerJoin;
    bool IntersectJoin;
    bool LeftOuterJoin;
    bool NaturalJoin;
    bool RightOuterJoin;
    bool UnionJoin;
    explicit operator String() const;
};
| Namespace: | nitisa | 
| Include: | Nitisa/Db/DbSupportedRelationJoinOperators.h |