真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C/C++ Qt 數(shù)據(jù)庫(kù)與TableView多組件聯(lián)動(dòng)

Qt 數(shù)據(jù)庫(kù)組件與TableView組件實(shí)現(xiàn)聯(lián)動(dòng),以下案例中實(shí)現(xiàn)了,當(dāng)用戶點(diǎn)擊并選中TableView組件內(nèi)的某一行時(shí),我們通過(guò)該行中的name字段查詢并將查詢結(jié)果關(guān)聯(lián)到ListView組件內(nèi),同時(shí)將TableView中選中行的字段分別顯示在窗體底部的LineEdit編輯內(nèi),該案例具體實(shí)現(xiàn)細(xì)節(jié)如下。

站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到貴德網(wǎng)站設(shè)計(jì)與貴德網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請(qǐng)、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋貴德地區(qū)。

首先在UI界面中繪制好需要的控件,左側(cè)放一個(gè)TableView組件,右側(cè)是一個(gè)ListView組件,底部放三個(gè)LineEdit組件,界面如下:

我們還是需要?jiǎng)?chuàng)建兩張表結(jié)構(gòu),表Student用于存儲(chǔ)學(xué)生的基本信息,表StudentTimetable存儲(chǔ)的是每個(gè)學(xué)生所需要學(xué)習(xí)的課程列表,執(zhí)行后創(chuàng)建數(shù)據(jù)表。

void InitMultipleSQL()
{
    QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
    db.setDatabaseName("./lyshark.db");
     if (!db.open())
     {
            std::cout << db.lastError().text().toStdString()<< std::endl;
            return;
     }

    // 執(zhí)行SQL創(chuàng)建表
    db.exec("DROP TABLE Student");
    db.exec("CREATE TABLE Student ("
                    "id INTEGER PRIMARY KEY AUTOINCREMENT, "
                    "name VARCHAR(40) NOT NULL, "
                    "age INTEGER NOT NULL)"
         );

    // 批量創(chuàng)建數(shù)據(jù)
    // https://www.cnblogs.com/lyshark
    QStringList name_list; name_list << "lyshark" << "lisi" << "wangwu";
    QStringList age_list; age_list << "25" << "34" << "45";

    // 綁定并插入數(shù)據(jù)
    QSqlQuery query;
    query.prepare("INSERT INTO Student(name,age) ""VALUES (:name, :age)");

    if(name_list.size() == age_list.size())
    {
        for(int x=0;x< name_list.size();x++)
        {
            query.bindValue(":name",name_list[x]);
            query.bindValue(":age",age_list[x]);
            query.exec();
        }
    }

    // ------------------------------------------------
    // 創(chuàng)建第二張表,與第一張表通過(guò)姓名關(guān)聯(lián)起來(lái)
    db.exec("DROP TABLE StudentTimetable");
    db.exec("CREATE TABLE StudentTimetable("
            "id INTEGER PRIMARY KEY AUTOINCREMENT, "
            "name VARCHAR(40) NOT NULL, "
            "timetable VARCHAR(128) NOT NULL"
            ")");

    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('lyshark','AAA')");
    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('lyshark','BBB')");
    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('lyshark','CCC')");

    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('lisi','QQQ')");
    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('lisi','WWW')");

    db.exec("INSERT INTO StudentTimetable(name,timetable) VALUES ('wangwu','EEE')");

    db.commit();
    db.close();
}

程序運(yùn)行后,構(gòu)造函數(shù)MainWindow::MainWindow(QWidget *parent)內(nèi)初始化表格,查詢Student表內(nèi)記錄,將查詢到的指針綁定到theSelection模型上,綁定后再將綁定指針加入到dataMapper組件映射中,即可實(shí)現(xiàn)初始化,其初始化代碼如下:

#include "mainwindow.h"
#include "ui_mainwindow.h"

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

QSqlQueryModel *qryModel;          // 數(shù)據(jù)模型
QItemSelectionModel *theSelection; // 選擇模型
QDataWidgetMapper *dataMapper;     // 數(shù)據(jù)界面映射

MainWindow::MainWindow(QWidget *parent) :QMainWindow(parent),ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
    db.setDatabaseName("./lyshark.db");
     if (!db.open())
     {
            std::cout << db.lastError().text().toStdString()<< std::endl;
            return;
     }

     // 查詢數(shù)據(jù)表中記錄
     qryModel=new QSqlQueryModel(this);
     qryModel->setQuery("SELECT * FROM Student ORDER BY id");
     if (qryModel->lastError().isValid())
     {
         return;
     }

     // 設(shè)置TableView表頭數(shù)據(jù)
     qryModel->setHeaderData(0,Qt::Horizontal,"ID");
     qryModel->setHeaderData(1,Qt::Horizontal,"Name");
     qryModel->setHeaderData(2,Qt::Horizontal,"Age");

     // 將數(shù)據(jù)綁定到模型上
     theSelection=new QItemSelectionModel(qryModel);
     ui->tableView->setModel(qryModel);
     ui->tableView->setSelectionModel(theSelection);
     ui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows);

     // 創(chuàng)建數(shù)據(jù)映射
     dataMapper= new QDataWidgetMapper();
     dataMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit);
     dataMapper->setModel(qryModel);
     dataMapper->addMapping(ui->lineEdit_id,0);
     dataMapper->addMapping(ui->lineEdit_name,1);
     dataMapper->addMapping(ui->lineEdit_age,2);
     dataMapper->toFirst();

     // 綁定信號(hào),當(dāng)鼠標(biāo)選擇時(shí),在底部編輯框中輸出
     // https://www.cnblogs.com/lyshark
     connect(theSelection,SIGNAL(currentRowChanged(QModelIndex,QModelIndex)),this,SLOT(on_currentRowChanged(QModelIndex,QModelIndex)));
}

MainWindow::~MainWindow()
{
    delete ui;
}

此時(shí)這個(gè)程序運(yùn)行后會(huì)得到表內(nèi)數(shù)據(jù):

接著我們需要綁定TableView表格的on_currentRowChanged()事件,當(dāng)用戶點(diǎn)擊TableView表格中的某個(gè)屬性是則自動(dòng)觸發(fā)該函數(shù),在此函數(shù)內(nèi)我們完成對(duì)其他組件的填充.

  • 1.通過(guò)currentIndex方法獲取到當(dāng)前表所在行
  • 2.通過(guò)當(dāng)前行號(hào)查詢表中姓名,并帶入StudentTimetable表查該表中記錄
  • 3.循環(huán)獲取該用戶的數(shù)據(jù),并將timetable字段提取出來(lái)放入QStringList容器
  • 4.將數(shù)據(jù)直接關(guān)聯(lián)到ListView數(shù)據(jù)表中
// 鼠標(biāo)點(diǎn)擊后的處理槽函數(shù)
void MainWindow::on_currentRowChanged(const QModelIndex ¤t, const QModelIndex &previous)
{
    Q_UNUSED(previous);
    if (!current.isValid())
    {
        return;
    }

    dataMapper->setCurrentModelIndex(current);

    // 獲取到記錄開(kāi)頭結(jié)尾
    bool first=(current.row()==0);                    // 是否首記錄
    bool last=(current.row()==qryModel->rowCount()-1);// 是否尾記錄
    std::cout << "IsFirst: " << first << "IsLast: " << last << std::endl;


    // 獲取name字段數(shù)據(jù)
    int curRecNo=theSelection->currentIndex().row();  // 獲取當(dāng)前行號(hào)
    QSqlRecord curRec=qryModel->record(curRecNo);     // 獲取當(dāng)前記錄
    QString uname = curRec.value("name").toString();
    std::cout << "Student Name = " << uname.toStdString() << std::endl;

    // 查StudentTimetable表中所有數(shù)據(jù)
    // 根據(jù)姓名過(guò)濾出該用戶的所有數(shù)據(jù)
    QSqlQuery query;
    query.prepare("select * from StudentTimetable where name = :x");
    query.bindValue(":x",uname);
    query.exec();

    // 循環(huán)獲取該用戶的數(shù)據(jù),并將timetable字段提取出來(lái)放入QStringList容器
    // https://www.cnblogs.com/lyshark
    QSqlRecord rec = query.record();
    QStringList the_data;

    while(query.next())
    {
        int index = rec.indexOf("timetable");
        QString data = query.value(index).toString();

        std::cout << "User timetable = " << data.toStdString() << std::endl;
        the_data.append(data);
    }

    // 關(guān)聯(lián)到ListView數(shù)據(jù)表中
    QStringListModel *model;
    model = new QStringListModel(the_data);
    ui->listView->setModel(model);
    ui->listView->setEditTriggers(QAbstractItemView::NoEditTriggers);
}

當(dāng)綁定選中事件時(shí),程序運(yùn)行效果如下:

針對(duì)底部按鈕處理事件相對(duì)來(lái)說(shuō)較為簡(jiǎn)單,其實(shí)現(xiàn)原理就是調(diào)用了TableView默認(rèn)提供的一些函數(shù)而已,代碼如下:

// 刷新tableView的當(dāng)前選擇行
// https://www.cnblogs.com/lyshark
void MainWindow::refreshTableView()
{
    int index=dataMapper->currentIndex();
    QModelIndex curIndex=qryModel->index(index,0);      // 定位到低0行0列
    theSelection->clearSelection();                     // 清空選擇項(xiàng)
    theSelection->setCurrentIndex(curIndex,QItemSelectionModel::Select);//設(shè)置剛插入的行為當(dāng)前選擇行
}

// 第一條記錄
void MainWindow::on_pushButton_clicked()
{
    dataMapper->toFirst();
    refreshTableView();
}
// 最后一條記錄
void MainWindow::on_pushButton_2_clicked()
{
    dataMapper->toLast();
    refreshTableView();
}

// 前一條記錄
void MainWindow::on_pushButton_3_clicked()
{
    dataMapper->toPrevious();
    refreshTableView();
}

// 下一條記錄
void MainWindow::on_pushButton_4_clicked()
{
    dataMapper->toNext();
    refreshTableView();
}

最終運(yùn)行效果如下所示:


網(wǎng)站名稱:C/C++ Qt 數(shù)據(jù)庫(kù)與TableView多組件聯(lián)動(dòng)
當(dāng)前URL:http://weahome.cn/article/dsogopp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部