2021-09-09 21:45:46 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* Copyright 2021, Jonas Kvinge <jonas@jkvinge.net>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SQLQUERY_H
|
|
|
|
#define SQLQUERY_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
|
|
|
#include <QSqlDatabase>
|
|
|
|
#include <QSqlQuery>
|
|
|
|
|
|
|
|
class SqlQuery : public QSqlQuery {
|
|
|
|
|
|
|
|
public:
|
2021-10-30 01:33:16 +02:00
|
|
|
explicit SqlQuery(const QSqlDatabase &db) : QSqlQuery(db) {}
|
2021-09-09 21:45:46 +02:00
|
|
|
|
|
|
|
void BindValue(const QString &placeholder, const QVariant &value);
|
2021-11-09 19:23:14 +01:00
|
|
|
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 BindFloatValue(const QString &placeholder, const float value);
|
|
|
|
void BindBoolValue(const QString &placeholder, const bool value);
|
|
|
|
void BindNotNullIntValue(const QString &placeholder, const int value);
|
|
|
|
void BindNotNullLongLongValue(const QString &placeholder, const qint64 value);
|
|
|
|
|
2021-09-09 21:45:46 +02:00
|
|
|
bool Exec();
|
|
|
|
QString LastQuery() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
QMap<QString, QVariant> bound_values_;
|
|
|
|
#endif
|
|
|
|
QString last_query_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SQLQUERY_H
|