private final Statement statement;
public QueryImpl(Statement statement) {
this.statement = statement;
this.get = new Get(new TableInfo());
this.update = new Update(this.get);
this.where = new WhereImpl(get, this);
this.and = new AndImpl(get, this);
this.set = new SetImpl(get, update, this);
}