CustomSelectStatement constructor

CustomSelectStatement(
  1. String query,
  2. List<Variable<Object>> variables,
  3. Set<ResultSetImplementation> tables,
  4. DatabaseConnectionUser _db,
)

Constructs a new custom select statement for the query, the variables, the affected tables and the database.

Implementation

CustomSelectStatement(this.query, this.variables, this.tables, this._db);