2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-11-09 19:21:58 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QVariant>
|
2021-11-09 19:21:58 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QUrl>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QSqlQuery>
|
|
|
|
#include <QSqlRecord>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "sqlrow.h"
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
SqlRow::SqlRow(const QSqlQuery &query) { Init(query); }
|
|
|
|
|
|
|
|
void SqlRow::Init(const QSqlQuery &query) {
|
|
|
|
|
2021-11-09 19:21:58 +01:00
|
|
|
const QSqlRecord r = query.record();
|
|
|
|
for (int i = 0; i < r.count(); ++i) {
|
|
|
|
columns_by_number_.insert(i, query.value(i));
|
|
|
|
const QString field_name = r.fieldName(i);
|
|
|
|
if (!columns_by_name_.contains(field_name) || columns_by_name_[field_name].isNull()) {
|
|
|
|
columns_by_name_.insert(field_name, query.value(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const QVariant SqlRow::value(const int number) const {
|
|
|
|
|
|
|
|
if (columns_by_number_.contains(number)) {
|
|
|
|
return columns_by_number_[number];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const QVariant SqlRow::value(const QString &name) const {
|
|
|
|
|
|
|
|
if (columns_by_name_.contains(name)) {
|
|
|
|
return columns_by_name_[name];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return QVariant();
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-11-09 19:21:58 +01:00
|
|
|
|
|
|
|
QString SqlRow::ValueToString(const QString &n) const {
|
|
|
|
return value(n).isNull() ? QString() : value(n).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QUrl SqlRow::ValueToUrl(const QString &n) const {
|
|
|
|
return value(n).isNull() ? QUrl() : QUrl(value(n).toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
int SqlRow::ValueToInt(const QString &n) const {
|
|
|
|
return value(n).isNull() ? -1 : value(n).toInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint SqlRow::ValueToUInt(const QString &n) const {
|
|
|
|
return value(n).isNull() || value(n).toInt() < 0 ? 0 : value(n).toInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 SqlRow::ValueToLongLong(const QString &n) const {
|
|
|
|
return value(n).isNull() ? -1 : value(n).toLongLong();
|
|
|
|
}
|
|
|
|
|
|
|
|
float SqlRow::ValueToFloat(const QString &n) const {
|
|
|
|
return value(n).isNull() ? -1.0F : value(n).toFloat();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SqlRow::ValueToBool(const QString &n) const {
|
|
|
|
return !value(n).isNull() && value(n).toInt() == 1;
|
|
|
|
}
|