1.学生管理系统,基于QT的数据库中数据表的增删改查
头文件
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QSqlDatabase> //数据库管理类
#include <QSqlQuery> //执行sql语句类
#include <QSqlRecord> //数据库记录类
#include <QSqlError> //数据库错误类
#include <QMessageBox> //消息对话框类
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = nullptr);
~Widget();
private slots:
void on_addBtn_clicked();
void on_showBtn_clicked();
void on_deleteBtn_clicked();
void on_updateBtn_clicked();
private:
Ui::Widget *ui;
//实例化一个数据库
QSqlDatabase db;
};
#endif // WIDGET_H
源文件
#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
//判断数据库是否存在
if(!db.contains("stuInfo.db"))
{
//说明数据库不存在,则创建
db = QSqlDatabase::addDatabase("QSQLITE"); //增加一个数据库,驱动为sqlite3
//给刚刚创建的数据库命名
db.setDatabaseName("stuInfo");
}
//打开数据库
if(!db.open())
{
QMessageBox::information(this,"","打开数据库失败");
return;
}
//创建数据表
//实例化一个执行sql语句的对象
QSqlQuery query;
//准备sql语句
QString sql = "create table if not exists stu_info_table("
"id integer primary key autoincrement,"
"numb int,"
"name char(20),"
"sex char(4),"
"score int)";
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","创建数据库表成功");
}else {
QMessageBox::information(this,"","创建数据库表失败");
}
}
Widget::~Widget()
{
delete ui;
}
//添加按钮对应的槽函数处理
void Widget::on_addBtn_clicked()
{
//获取ui界面上学生信息
int numb = ui->numbEdit->text().toUInt();
QString name = ui->nameEdit->text();
QString sex = ui->sexEdit->text();
int score = ui->scoreEdit->text().toUInt();
//判断用户是否填写完整信息
if(numb == 0 || name.isEmpty() || sex.isEmpty() || score == 0)
{
QMessageBox::information(this,"","请将信息填写完整");
return;
}
//实例化一个执行sql语句的对象
QSqlQuery query;
//准备sql语句
QString sql = QString("insert into stu_info_table(numb,name,sex,score) "
"values(%1,'%2','%3',%4)").arg(numb).arg(name).arg(sex).arg(score);
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","添加成功");
ui->numbEdit->clear();
ui->nameEdit->clear();
ui->sexEdit->clear();
ui->scoreEdit->clear();
}else {
QMessageBox::information(this,"","添加失败");
}
}
//显示按钮对应的槽函数处理
void Widget::on_showBtn_clicked()
{
//实例化执行sql语句的对象
QSqlQuery query;
//准备sql语句
QString sql = "select * from stu_info_table";
//执行sql语句
if(!query.exec(sql))
{
QMessageBox::information(this,"","查询失败");
return;
}
//所查询的信息就已经存放到query对象中
int i = 0; //记录行号
while(query.next())
{
for(int j=0; j<query.record().count();j++) //遍历列数
{
//将数据的数据放入ui界面
ui->tableWidget->setItem(i,j,new QTableWidgetItem(query.value(j+1).toString()));
}
i++; //行数递增
}
}
//删除按钮对应的槽函数处理
void Widget::on_deleteBtn_clicked()
{
//实例化执行对象
QSqlQuery query;
//获取ui界面上的删除关键词
int numb = ui->numbEdit->text().toUInt();
if(numb == 0)
{
QMessageBox::information(this,"","请输入删除学生学号");
return;
}
//准备sql语句
QString sql = QString("delete from stu_info_table where numb = %1").arg(numb);
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","删除成功");
ui->numbEdit->clear();
ui->tableEdit->clearcontens();
}else {
QMessageBox::information(this,"","删除失败");
}
}
//修改按钮对应的槽函数处理
void Widget::on_updateBtn_clicked()
{
//实例化执行对象
QSqlQuery query;
//获取修改信息
int numb = ui->numbEdit->text().toUInt();
QString name = ui->nameEdit->text();
QString sex = ui->sexEdit->text();
int score = ui->scoreEdit->text().toUInt();
if(numb == 0)
{
QMessageBox::information(this,"","请输入修改学生学号");
return;
}
if(!name.isEmpty())
{
//准备sql语句
QString sql = QString("update stu_info_table set name = '%1' where numb = %2").arg(name).arg(numb);
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","修改成功");
ui->numbEdit->clear();
}else {
QMessageBox::information(this,"","修改失败");
}
ui->nameEdit->clear();
}
if(!sex.isEmpty())
{
//准备sql语句
QString sql = QString("update stu_info_table set sex = '%1' where numb = %2").arg(sex).arg(numb);
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","修改成功");
ui->numbEdit->clear();
}else {
QMessageBox::information(this,"","修改失败");
}
ui->sexEdit->clear();
}
if(score != 0)
{
//准备sql语句
QString sql = QString("update stu_info_table set score = %1 where numb = %2").arg(score).arg(numb);
//执行sql语句
if(query.exec(sql))
{
QMessageBox::information(this,"","修改成功");
ui->numbEdit->clear();
}else {
QMessageBox::information(this,"","修改失败");
}
ui->scoreEdit->clear();
}
}
修改效果图
删除效果图
2.MP4视频的灰度显示和均衡模式
源文件
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
//将本地的视频加载到程序中
VideoCapture v;
v.open("D:\\opencv\\heads\\01.mp4");
//定义一个存放从视频中读取到的一帧图像
Mat src;
while(v.read(src))
{
//显示原图图像
imshow("test1",src);
//显示灰度图像
//定义一个容器存放灰度图片
Mat gray;
//设置灰度
cvtColor(src,gray,CV_BGR2GRAY);
//显示灰度图像
imshow("test2",gray);
//显示均衡模式
//定义一个容器存放均衡模式
Mat dst;
//均衡处理
equalizeHist(gray,dst);
//显示均衡图片
imshow("test3",dst);
if(waitKey(30) == 27)
{
break;
}
}
return a.exec();
}
效果图
3.思维导图文章来源:https://www.toymoban.com/news/detail-794303.html
文章来源地址https://www.toymoban.com/news/detail-794303.html
到了这里,关于QT DAY6作业的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!