QT数据库编程

ui界面

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QButtonGroup>
#include <QFileDialog>
#include <QMessageBox>
MainWindow::MainWindow(QWidget* parent): QMainWindow(parent), ui(new Ui::MainWindow)
{ui->setupUi(this);//    this->setCentralWidget(ui->splitter);ui->tableView->setSelectionMode(QAbstractItemView::SingleSelection); //设置择的模式只可以选中一个ui->tableView->setAlternatingRowColors(true); //设置不同行颜色//设置分组QButtonGroup* group = new QButtonGroup(this);group->addButton(ui->radioButton);group->addButton(ui->radioButton_2);
}MainWindow::~MainWindow()
{delete ui;
}void MainWindow::on_pushButton_clicked()
{QString file = QFileDialog::getOpenFileName(this, "选择文件", "../", "SQLITE(*.*)");if (file.isEmpty())return;db = QSqlDatabase::addDatabase("QSQLITE"); //添加驱动db.setDatabaseName(file); //加入文件if (!db.open())QMessageBox::warning(this, "错误", "打开失败");else {openTable(); //打开数据库表格}qDebug() << "完成";
}void MainWindow::do_current_changed(const QModelIndex& current, const QModelIndex&)
{Q_UNUSED(current);qDebug() << "当前改变";ui->pushButton_8->setEnabled(tabModel->isDirty()); //是改过的
}void MainWindow::do_current_row_changed(const QModelIndex& current, const QModelIndex&)
{qDebug() << "点击了单元格";if (!current.isValid()) {ui->label_10->clear();return;}ui->pushButton_8->setEnabled(true);//映射dataMapper->setCurrentIndex(current.row());QSqlRecord curRecord = tabModel->record(current.row());if (!curRecord.isEmpty()) {qDebug() << "数据" << curRecord;}
}void MainWindow::openTable()
{//创建模型,打开数据库表格tabModel = new QSqlTableModel(this, db);tabModel->setTable("test"); //设置数据库表名称tabModel->setEditStrategy(QSqlTableModel::OnManualSubmit); //手动提交tabModel->setSort(tabModel->fieldIndex("id"), Qt::DescendingOrder); //按id 降序排序, 升序 AscendingOrderif (!tabModel->select()) {QMessageBox::critical(this, "错误", tabModel->lastError().text());}ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));//设置字段显示的标题tabModel->setHeaderData(tabModel->fieldIndex("id"), Qt::Horizontal, "ID号");tabModel->setHeaderData(tabModel->fieldIndex("name"), Qt::Horizontal, "姓名");// model /viewselModel = new QItemSelectionModel(tabModel, this);ui->tableView->setModel(tabModel);ui->tableView->setSelectionModel(selModel); //注意:必须先设置模型在设置选择模型,否则不生效//    ui->tableView->setColumnHidden(tabModel->fieldIndex("id"), true); //隐藏数据//代理QStringList str;str << "男"<< "女";delegateSex.setItems(str, false);ui->tableView->setItemDelegateForColumn(tabModel->fieldIndex("name"), &delegateSex);//字段与widget映射dataMapper = new QDataWidgetMapper(this);dataMapper->setModel(tabModel);dataMapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit); //数据自动提交dataMapper->addMapping(ui->spinBox, tabModel->fieldIndex("id"));dataMapper->addMapping(ui->lineEdit, tabModel->fieldIndex("name"));dataMapper->toFirst(); //显示第一条记录// 状态发生变化//    ui->pushButton->setEnabled(false);//获取字段名更新QSqlRecord emptyRec = tabModel->record();qDebug() << "emptyRec = " << emptyRec;for (int i = 0; i < emptyRec.count(); ++i) {ui->comboBox->addItem(emptyRec.fieldName(i));}//信号连接connect(selModel, &QItemSelectionModel::currentChanged, this, &MainWindow::do_current_changed);connect(selModel, &QItemSelectionModel::currentRowChanged, this, &MainWindow::do_current_row_changed);
}void MainWindow::on_pushButton_3_clicked()
{QModelIndex index = ui->tableView->currentIndex();QSqlRecord rec = tabModel->record();rec.setValue(tabModel->fieldIndex("name"), "王五");tabModel->insertRecord(index.row(), rec);selModel->clearSelection();selModel->setCurrentIndex(tabModel->index(tabModel->rowCount() - 1, 1), QItemSelectionModel::Select);//更新状态栏ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}void MainWindow::on_pushButton_2_clicked()
{QSqlRecord rec = tabModel->record();rec.setValue(tabModel->fieldIndex("name"), "王五");tabModel->insertRecord(tabModel->rowCount(), rec);selModel->clearSelection();selModel->setCurrentIndex(tabModel->index(tabModel->rowCount() - 1, 1), QItemSelectionModel::Select);//更新状态栏ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}void MainWindow::on_pushButton_4_clicked()
{QModelIndex index = ui->tableView->currentIndex();tabModel->removeRow(index.row());ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}void MainWindow::on_pushButton_5_clicked()
{QString aFile = QFileDialog::getOpenFileName(this, "选择图片", "", "(*.jpg)");if (aFile.isEmpty())return;QFile* file = new QFile(aFile, this);if (file->open(QIODevice::ReadOnly)) {QByteArray arr = file->readAll();file->close();QSqlRecord rec = tabModel->record(selModel->currentIndex().row());rec.setValue("photh", arr); //设置数据tabModel->setRecord(selModel->currentIndex().row(), rec); //设置行数据QPixmap pix;pix.load(aFile); //加载图片ui->label_10->setPixmap(pix.scaledToWidth(pix.width()));}
}void MainWindow::on_pushButton_6_clicked()
{QSqlRecord rec = tabModel->record(selModel->currentIndex().row());rec.setNull("photh");tabModel->setRecord(selModel->currentIndex().row(), rec);ui->label_10->clear();
}void MainWindow::on_pushButton_7_clicked()
{if (tabModel->rowCount() == 0)return;for (int i = 0; i < tabModel->rowCount(); ++i) {QSqlRecord rec = tabModel->record(i);rec.setValue("name", rec.value("name").toInt() + 100);tabModel->setRecord(i, rec);}if (tabModel->submitAll()) { // submit不成功,需要allQMessageBox::information(this, "成功", "涨工资成功");}
}void MainWindow::on_pushButton_8_clicked()
{bool ret = tabModel->submitAll();if (!ret) {QMessageBox::critical(this, "失败", "保存失败");}
}void MainWindow::on_pushButton_9_clicked()
{tabModel->revertAll(); //还原
}void MainWindow::on_comboBox_currentIndexChanged(int index)
{if (ui->radioButton->isChecked()) {tabModel->sort(index, Qt::AscendingOrder);} else {tabModel->sort(index, Qt::DescendingOrder);}tabModel->select();
}void MainWindow::on_radioButton_clicked()
{try {tabModel->sort(ui->comboBox->currentIndex(), Qt::AscendingOrder); // sort不需要select} catch (QException err) {qDebug() << err.what();}
}void MainWindow::on_radioButton_2_clicked()
{try {tabModel->sort(ui->comboBox->currentIndex(), Qt::DescendingOrder); // sort不需要select} catch (QException err) {qDebug() << err.clone();}
}void MainWindow::on_radioButton_3_clicked()
{tabModel->setFilter("name='12'");ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}void MainWindow::on_radioButton_4_clicked()
{tabModel->setFilter("name='张三'");ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}void MainWindow::on_radioButton_5_clicked()
{tabModel->setFilter("");ui->statusbar->showMessage(QString("记录条数为 %1").arg(tabModel->rowCount()));
}

 mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include "tcomboxdelegate.h"
#include <QDataWidgetMapper>
#include <QMainWindow>
#include <QSql>
#include <QSqlTableModel>
#include <QtSql>
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACEclass MainWindow : public QMainWindow {Q_OBJECTpublic:MainWindow(QWidget* parent = nullptr);~MainWindow();private slots:void on_pushButton_clicked();void do_current_changed(const QModelIndex& current, const QModelIndex& previous);void do_current_row_changed(const QModelIndex& current, const QModelIndex& previous);void on_pushButton_3_clicked();void on_pushButton_2_clicked();void on_pushButton_4_clicked();void on_pushButton_5_clicked();void on_pushButton_6_clicked();void on_pushButton_7_clicked();void on_pushButton_8_clicked();void on_pushButton_9_clicked();void on_comboBox_currentIndexChanged(int index);void on_radioButton_clicked();void on_radioButton_2_clicked();void on_radioButton_3_clicked();void on_radioButton_4_clicked();void on_radioButton_5_clicked();private:Ui::MainWindow* ui;QSqlTableModel* tabModel;QDataWidgetMapper* dataMapper;QItemSelectionModel* selModel;QSqlDatabase db;TComBoxDelegate delegateSex;TComBoxDelegate deleagteDepart;void openTable();
};
#endif // MAINWINDOW_H

tcomboxdelegate.cpp

#include "tcomboxdelegate.h"
#include <QComboBox>
TComBoxDelegate::TComBoxDelegate(QObject* parent): QStyledItemDelegate { parent }
{
}
QWidget* TComBoxDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
{QComboBox* editor = new QComboBox(parent);editor->setEditable(m_editable);qDebug() << m_itemList.size();for (auto item : m_itemList) {editor->addItem(item);}return editor;
}void TComBoxDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const
{QComboBox* box = dynamic_cast<QComboBox*>(editor); //把editor转为指向QSpinBox的指针 动态强转QString value = index.model()->data(index, Qt::DisplayRole).toString();box->setCurrentText(value);
}void TComBoxDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const
{QComboBox* box = dynamic_cast<QComboBox*>(editor); //把editor转为指向QSpinBox的指针 动态强转QString value = box->currentText();model->setData(index, value);
}void TComBoxDelegate::updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const
{editor->setGeometry(option.rect);
}void TComBoxDelegate::setItems(QStringList list, bool editabale)
{m_itemList = list;m_editable = editabale;
}

tcomboxdelegate.h

#ifndef TCOMBOXDELEGATE_H
#define TCOMBOXDELEGATE_H#include <QObject>
#include <QStyledItemDelegate>class TComBoxDelegate : public QStyledItemDelegate {Q_OBJECT
public:explicit TComBoxDelegate(QObject* parent = nullptr);// QAbstractItemDelegate interface
public:virtual QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const override;virtual void setEditorData(QWidget* editor, const QModelIndex& index) const override;virtual void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const override;virtual void updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const override;void setItems(QStringList list, bool editabale);private:QStringList m_itemList;bool m_editable;
};#endif // TCOMBOXDELEGATE_H

QSqlQueryModel模块使用

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/16402.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

FFmpeg 音视频开发工具

目录 FFmpeg 下载与安装 ffmpeg 使用快速入门 ffplay 使用快速入门 FFmpeg 全套下载与安装 1、FFmpeg 是处理音频、视频、字幕和相关元数据等多媒体内容的库和工具的集合。一个完整的跨平台解决方案&#xff0c;用于录制、转换和流式传输音频和视频。 官网&#xff1a;http…

uni-ajax网络请求库使用

uni-ajax网络请求库使用 uni-ajax是什么 uni-ajax是基于 Promise 的轻量级 uni-app 网络请求库,具有开箱即用、轻量高效、灵活开发 特点。 下面是安装和使用教程 安装该请求库到项目中 npm install uni-ajax编辑工具类request.js // ajax.js// 引入 uni-ajax 模块 import ajax…

微信小程序测试要点

一、什么是小程序&#xff1f; 可以将小程序理解为轻便的APP&#xff0c;不用安装就可以使用的应用。用户通过扫一扫或者搜索的方式&#xff0c;就可以打开应用。 小程序最主要的特点是内嵌于微信之中&#xff0c;而使用小程序的目的是为了能够方便用户不在受下载多个APP的烦…

【序列化工具JdkSerialize和Protostuff】

序列化工具对比 JdkSerialize&#xff1a;java内置的序列化能将实现了Serilazable接口的对象进行序列化和反序列化&#xff0c; ObjectOutputStream的writeObject()方法可序列化对象生成字节数组 Protostuff&#xff1a;google开源的protostuff采用更为紧凑的二进制数组&#…

5.2.16.静态映射操作LED3

5.2.16.静态映射操作LED3 5.2.16.1、添加驱动中的写函数 (1)先定义好应用和驱动之间的控制接口&#xff0c;这个是由自己来定义的。譬如定义为&#xff1a;应用向驱动写"on"则驱动让LED亮&#xff0c;应用向驱动写"off"&#xff0c;驱动就让LED灭 1. 驱动文…

计算机网络(2) --- 网络套接字

计算机网络&#xff08;1&#xff09; --- 网络介绍_哈里沃克的博客-CSDN博客https://blog.csdn.net/m0_63488627/article/details/131967378?spm1001.2014.3001.5501 目录 1.端口号 2.TCP与UDP协议 1.TCP协议介绍 1.TCP协议 2.UDP协议 3.理解 2.网络字节序 发送逻辑…

Go 下载安装教程

1. 下载地址&#xff1a;The Go Programming Language (google.cn) 2. 下载安装包 3. 安装 &#xff08;1&#xff09;下一步 &#xff08;2&#xff09;同意 &#xff08;3&#xff09;修改安装路径&#xff0c;如果不修改&#xff0c;直接下一步 更改后&#xff0c;点击下一…

代码随想录算法训练营第三十天 | 单调栈系列复习

单调栈系列复习 每日温度未看解答自己编写的青春版重点题解的代码日后再次复习重新写 下一个更大元素 I未看解答自己编写的青春版重点题解的代码日后再次复习重新写 下一个更大元素II未看解答自己编写的青春版重点题解的代码日后再次复习重新写 接雨水未看解答自己编写的青春版…

计算机毕设 深度学习卫星遥感图像检测与识别 -opencv python 目标检测

文章目录 0 前言1 课题背景2 实现效果3 Yolov5算法4 数据处理和训练5 最后 0 前言 &#x1f525; 这两年开始毕业设计和毕业答辩的要求和难度不断提升&#xff0c;传统的毕设题目缺少创新和亮点&#xff0c;往往达不到毕业答辩的要求&#xff0c;这两年不断有学弟学妹告诉学长…

《数据同步-NIFI系列》Nifi配置DBCPConnectionPool连接SQL Server数据库

Nifi配置DBCPConnectionPool连接SQL Server数据库 一、新增DBCPConnectionPool 在配置中新增DBCPConnectionPool&#xff0c;然后配置数据库相关信息 二、配置DBCPConnectionPool 2.1 DBCPConnectionPool介绍 主要介绍以下五个必填参数 Database Connection URL&#xff1…

iOS开发-实现自定义Tabbar及tabbar按钮动画效果

iOS开发-实现自定义Tabbar及tabbar按钮动画效果 之前整理了一个继承UITabbarController的Tabbar效果 查看 https://blog.csdn.net/gloryFlow/article/details/132012628 这里是继承与UIViewController的INSysTabbarViewController实现及点击tabbar按钮动画效果。 一、INSysT…

qt源码--事件系统之QAbstractEventDispatcher

1、QAbstractEventDispatcher内容较少&#xff0c;其主要是定义了一些注册接口&#xff0c;如定时器事件、socket事件、注册本地事件、自定义事件等等。其源码如下&#xff1a; 其主要定义了大量的纯虚函数&#xff0c;具体的实现会根据不同的系统平台&#xff0c;实现对应的方…

软件测试员的非技术必备技能

成为软件测试人员所需的技能 非技术技能 以下技能对于成为优秀的软件测试人员至关重要。 将您的技能组合与以下清单进行比较&#xff0c;以确定软件测试是否适合您 - 分析技能&#xff1a;优秀的软件测试人员应具备敏锐的分析能力。 分析技能将有助于将复杂的软件系统分解为…

LeetCode每日一题Day1——买卖股票的最佳时机

✨博主&#xff1a;命运之光 &#x1f984;专栏&#xff1a;算法修炼之练气篇&#xff08;C\C版&#xff09; &#x1f353;专栏&#xff1a;算法修炼之筑基篇&#xff08;C\C版&#xff09; &#x1f433;专栏&#xff1a;算法修炼之练气篇&#xff08;Python版&#xff09; ✨…

Ribbon源码

学了feign源码之后感觉&#xff0c;这部分还是按运行流程分块学合适。核心组件什么的&#xff0c;当专业术语学妥了。序章&#xff1a;认识真正のRibbon 但只用认识一点点 之前我们学习Ribbon的简单使用时&#xff0c;都是集成了Eureka-client或者Feign等组件&#xff0c;甚至在…

开发一个RISC-V上的操作系统(五)—— 协作式多任务

目录 往期文章传送门 一、什么是多任务 二、代码实现 三、测试 往期文章传送门 开发一个RISC-V上的操作系统&#xff08;一&#xff09;—— 环境搭建_riscv开发环境_Patarw_Li的博客-CSDN博客 开发一个RISC-V上的操作系统&#xff08;二&#xff09;—— 系统引导程序&a…

Mac下certificate verify failed: unable to get local issuer certificate

出现这个问题&#xff0c;可以安装证书 在finder中查找 Install Certificates.command找到后双击&#xff0c;或者使用其他终端打开 安装完即可

【机器学习】Cost Function

Cost Function 1、计算 cost2、cost 函数的直观理解3、cost 可视化总结附录 首先&#xff0c;导入所需的库&#xff1a; import numpy as np %matplotlib widget import matplotlib.pyplot as plt from lab_utils_uni import plt_intuition, plt_stationary, plt_update_onclic…

【Github】自动监测 SSL 证书过期的轻量级监控方案 - Domain Admin

在现代的企业网络中&#xff0c;网站安全和可靠性是至关重要的。一个不注意的SSL证书过期可能导致网站出现问题&#xff0c;给公司业务带来严重的影响。针对这个问题&#xff0c;手动检测每个域名和机器的证书状态需要花费大量的时间和精力。为了解决这个问题&#xff0c;我想向…

【bar堆叠图形绘制】

绘制条形图示例 在数据可视化中&#xff0c;条形图是一种常用的图表类型&#xff0c;用于比较不同类别的数据值。Python的matplotlib库为我们提供了方便易用的功能来绘制条形图。 1. 基本条形图 首先&#xff0c;我们展示如何绘制基本的条形图。假设我们有一个包含十个类别的…