crossJoin method

void crossJoin(
  1. String tableName
)

Execute a CROSS JOIN (Cartesian product) against another table.

Implementation

void crossJoin(String tableName) {
  _crossJoin = tableName;
}