/* * Strawberry Music Player * Copyright 2021, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #ifndef SQLQUERY_H #define SQLQUERY_H #include "config.h" #include #include #include #include #include class SqlQuery : public QSqlQuery { public: explicit SqlQuery(const QSqlDatabase &db) : QSqlQuery(db) {} void BindValue(const QString &placeholder, const QVariant &value); void BindStringValue(const QString &placeholder, const QString &value); void BindUrlValue(const QString &placeholder, const QUrl &value); void BindIntValue(const QString &placeholder, const int value); void BindLongLongValue(const QString &placeholder, const qint64 value); void BindLongLongValueOrZero(const QString &placeholder, const qint64 value); void BindFloatValue(const QString &placeholder, const float value); void BindBoolValue(const QString &placeholder, const bool value); void BindNotNullIntValue(const QString &placeholder, const int value); bool Exec(); QString LastQuery() const; private: #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) QMap bound_values_; #endif QString last_query_; }; #endif // SQLQUERY_H