How to Use a QSqlQueryModel in QML

本文详细介绍了如何将QSqlQueryModel与QML结合使用,包括创建自定义模型的具体步骤,以及一种更通用的方法来简化模型的实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

How to Use a QSqlQueryModel in QML

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

English Spanish Italian


How to use a QSqlQueryModel in QML

Initial fully detailed approach

Introduction

The software I develop, Photo Parata, is a client server application that uses a sql backend. Most of the time the data Photo Parata displays requires some joins. Because of this, most of the time the models are derived from QSqlQueryModel, not QSqlTableModel. For QSqlRelationalTableModel, you can find an working but unexplained example athttp://wiki.qt.io/QML_and_QSqlTableModel

In this how to, I will walk you through the steps of setting up a custom model for QML, derived from QSqlQueryModel.

I would like to thank Christophe Dumez for his blog How to use C++ list model in QML. It was this blog that allowed me to piece the following together.

Other useful sources were : Using_QStandardItemModel_in_QML (wiki page) and QSqlTableModel in QML (forum thread)

The data source for this example was lifted from one of the Sql examples that ships with Qt, examples\sql\masterdetail

Step 1: Create a C++ class that derives from QSqlQueryModel:

All the magic happens in the constructor and in the overloaded data() method.

class ArtistsSqlModel : public QSqlQueryModel
{
    Q_OBJECT
public:
    explicit ArtistsSqlModel(QObject *parent);
    void refresh();
    QVariant data(const QModelIndex &index, int role) const;
 
signals:
 
public slots:
 
private:
    const static char* COLUMN_NAMES[];
    const static char* SQL_SELECT;
};

Step 2: Implement two static constants

I always have two constant static variables in each of my models that derive from QSqlQueryModel, COLUMN_NAMES and SQL_SELECT. The order of the column names in COLUMN_NAMES must match the order they are listed in the SELECT statement

const char* ArtistsSqlModel::COLUMN_NAMES[] = {
    "artist",
    "title",
    "year",
    NULL
};
const char* ArtistsSqlModel::SQL_SELECT =
    "SELECT artists.artist, albums.title, albums.year"
    " FROM albums"
    " JOIN artists ON albums.artistid = artists.id";

Step 3: Set the roleNames in the constructor

This is where all the magic really happens. The QML will reference the different columns by the role names set on the model.

ArtistsSqlModel::ArtistsSqlModel(QObject *parent) :
    QSqlQueryModel(parent)
{
    int idx = 0;
    QHash<int, QByteArray> roleNames;
    while( COLUMN_NAMES[idx]) {
        roleNames[Qt::UserRole + idx + 1] = COLUMN_NAMES[idx];
        idx++;
    }
    setRoleNames(roleNames);
    refresh();
}

Step 4: implement the data() method and the refresh() method:

As long as the role that is requested is not a user role, return the default. But if the role is a user role, return the correct column:

QVariant ArtistsSqlModel::data(const QModelIndex &index, int role) const
{
    QVariant value = QSqlQueryModel::data(index, role);
    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;
}

The refresh() method is the most important, without it, the model won't show anything at all. The best is to stick to the setQuery method from QSqlQueryModel.

void ArtistsSqlModel::refresh()
{
    this->setQuery(SQL_SELECT);
}

Step 5: Allow QML to see the model:

Create an instance of the model (make note that the constructor of the model did query the DB the first time). Then set it as a property on the viewer’s context, in this case I called it artistModel:

ArtistsSqlModel *artistsSqlModel = new ArtistsSqlModel( qApp);
QmlApplicationViewer viewer;
 
viewer.rootContext()->setContextProperty("artistsModel", artistsSqlModel);
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
viewer.setMainQmlFile(QLatin1String("qml/SQLListView/main.qml"));
viewer.showExpanded();

Step 6: Create the QML list

Since the model was exposed in step 5, the model exists and is ready to be used in QML. Simply set the model of the ListView to the name give in step 5.

import QtQuick 1.1
 
Rectangle {
    width: 500
    height: 500
    MouseArea {
        anchors.fill: parent
        Text {
            id: text1
            anchors.verticalCenterOffset: 20
            anchors.horizontalCenter: parent.horizontalCenter
            text: qsTr("Testing")
            font.pixelSize: 12
            }
        ListView {
            id: list_view1
            x: 125
            y: 100
            width: 110
            height: 160
            delegate: ArtistItemDelegate {}
            model: artistsModel
        }
    }
}

Step 7: Create the QML delegate used by the list

And finally implementation of the delegate. Notice here how the names set in the roleModel are used as the values to bind to the text property of the Text objects:

ArtistItemDelegate.qml

import QtQuick 1.1
 
Item {
    id: delegate
    width: delegate.ListView.view.width;
    height: 30
    clip: true
    anchors.margins: 4
    Row {
        anchors.margins: 4
        anchors.fill: parent
        spacing: 4;
        Text {
            text: artist
            width: 150
        }
        Text {
            text: title
            width: 300;
        }
        Text {
            text: year
            width: 50;
        }
    }
}


Source code is no longer available on my website, so feel free to contact me for the complete source code, I will be happy to share!


A more generic approach

Based on the initial wiki article I came up with a more generic approach that allow to use the same class for all your models instead of creating a derived class for each model.

Here it is :

sqlquerymodel.h

#pragma once
#include <QSqlQueryModel>
 
class SqlQueryModel : public QSqlQueryModel
{
    Q_OBJECT
 
public:
    explicit SqlQueryModel(QObject *parent = 0);
 
    void setQuery(const QString &query, const QSqlDatabase &db = QSqlDatabase());
    void setQuery(const QSqlQuery &query);
    QVariant data(const QModelIndex &index, int role) const;
    QHash<int, QByteArray> roleNames() const {	return m_roleNames;	}
 
private:
    void generateRoleNames();
    QHash<int, QByteArray> m_roleNames;
};

sqlquerymodel.cpp

#include "SqlQueryModel.h"
#include <QSqlRecord>
#include <QSqlField>
 
SqlQueryModel::SqlQueryModel(QObject *parent) :
    QSqlQueryModel(parent)
{
}
 
void SqlQueryModel::setQuery(const QString &query, const QSqlDatabase &db)
{
    QSqlQueryModel::setQuery(query, db);
    generateRoleNames();
}
 
void SqlQueryModel::setQuery(const QSqlQuery & query)
{
    QSqlQueryModel::setQuery(query);
    generateRoleNames();
}
 
void SqlQueryModel::generateRoleNames()
{
    m_roleNames.clear();
    for( int i = 0; i < record().count(); i ++) {
        m_roleNames.insert(Qt::UserRole + i + 1, record().fieldName(i).toUtf8());
    }
}
 
QVariant SqlQueryModel::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;
}

And use it like this :

SqlQueryModel *model1 = new SqlQueryModel(0);
model1->setQuery("SELECT * FROM table WHERE column='value'");
SqlQueryModel *model2 = new SqlQueryModel(0);
model2->setQuery("SELECT * FROM anothertable WHERE anothercolumn='value'");
QmlApplicationViewer viewer;
viewer.rootContext()->setContextProperty("myFirstModel", model1);
viewer.rootContext()->setContextProperty("mySecondModel", model2);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值