SimpleSelectStatement<T extends HasResultSet, D> constructor

SimpleSelectStatement<T extends HasResultSet, D>(
  1. DatabaseConnectionUser database,
  2. ResultSetImplementation<T, D> table, {
  3. bool distinct = false,
})

Used internally by drift, users will want to call DatabaseConnectionUser.select instead.

Implementation

SimpleSelectStatement(super.database, super.table, {this.distinct = false});