-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysqlmodel.cpp
54 lines (44 loc) · 1.2 KB
/
mysqlmodel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "mysqlmodel.h"
MysqlModel::MysqlModel(QObject *parent) : QSqlQueryModel(parent)
{
}
void MysqlModel::setQuery(const QString &query, const QSqlDatabase &db)
{
QSqlQueryModel::setQuery(query, db);
generateRoleNames();
}
void MysqlModel::setQuery(const QSqlQuery &query)
{
QSqlQueryModel::setQuery(query);
generateRoleNames();
}
QVariant MysqlModel::data(const QModelIndex &index, int role) const
{
QVariant value;
if(role < Qt::UserRole) {
value = QSqlQueryModel::data(index, role);
}
else {
int columnIdx = role - Qt::UserRole - 1;
QModelIndex modelIndex = this->index(index.row(), columnIdx);
value = QSqlQueryModel::data(modelIndex, Qt::DisplayRole);
}
return value;
}
QHash<int, QByteArray> MysqlModel::roleNames() const
{
// Important that you set this
// Else display will not work in QML
return {{Qt::DisplayRole, "display"}};
}
void MysqlModel::callSql(QString queryString)
{
this->setQuery(queryString);
}
void MysqlModel::generateRoleNames()
{
m_roleNames.clear();
for( int i = 0; i < record().count(); i ++) {
m_roleNames.insert(Qt::UserRole + i + 1, record().fieldName(i).toUtf8());
}
}