SimpleSelectStatement<T extends HasResultSet, D> constructor
Null safety
- DatabaseConnectionUser database,
- ResultSetImplementation<
T, D> table, - {bool distinct = false}
Used internally by drift, users will want to call DatabaseConnectionUser.select instead.
Implementation
SimpleSelectStatement(
DatabaseConnectionUser database, ResultSetImplementation<T, D> table,
{this.distinct = false})
: super(database, table);