AllClauses typedef

AllClauses = ({String fromClause, String joinClause, String orderByClause, String selectClause, String whereClause})

The clause text for each part of the statement

Implementation

typedef AllClauses = ({
  String selectClause,
  String fromClause,
  String joinClause,
  String whereClause,
  String orderByClause
});