Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 28d2f01a

Von Christian Ehringfeld vor mehr als 8 Jahren hinzugefügt

  • ID 28d2f01abb8a0130364394432ca605f538c26f14
  • Vorgänger 519b2fe3
  • Nachfolger a72dc7ae

validators

Unterschiede anzeigen:

src/query.cpp
this->having = having;
}
Query::Query(QString from, Expression where, Join join,
QHash<QString, QVariant> params, quint64 limit, quint64 offset,
Expression select, QString groupBy, bool distinct, QList<Expression> having) {
this->from.append(from);
this->where.append(where);
this->joins.append(join);
this->params = params;
this->limit = limit;
this->offset = offset;
this->select.append(select);
this->groupBy.append(groupBy);
this->distinct = distinct;
this->having = having;
}
void Query::appendWhere(const QString &condition) {
this->where.append(Expression(condition));
}

Auch abrufbar als: Unified diff