C++DAY50

源文件代码

cpp 复制代码
#include "widget.h"
#include "ui_widget.h"

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

    if(!db.contains())
    {
        db = QSqlDatabase::addDatabase("QSQLITE");

        db.setDatabaseName("stuinfo.db");
        QMessageBox::information(this,"","创建数据库成功");
    }

    if(!db.open())
    {
        QMessageBox::information(this,"","打开数据库失败");
        return;
    }

    QSqlQuery query;

    QString sql = "create table if not exists stu_info_table("
                  "id integer primary key autoincrement,"
                  "numb integer,"
                  "name varchar(20),"
                  "sex varchar(4),"
                  "score integer)";

    if(query.exec(sql))
    {
        QMessageBox::information(this,"","创建数据表成功");
    }
    else
    {
        QMessageBox::information(this,"","创建数据表失败");
    }

}

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


void Widget::on_addbtn_clicked()
{
    int numb = ui->numEdit->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;
    }

    QSqlQuery query;
    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);
    if(query.exec(sql))
    {
        QMessageBox::information(this,"","添加成功");
    }
    else
    {
        QMessageBox::information(this,"","添加失败");
    }
}

void Widget::on_showbtn_clicked()
{
    QSqlQuery query;
    QString sql = "select * from stu_info_table";
    ui->tableWidget->clear();
    if(query.exec(sql))
    {
        int i = 0;
        while(query.next())
        {
            for(int j = 0;j < query.record().count();j++)
            {
                ui->tableWidget->setItem(i,j,new QTableWidgetItem(query.value(j+1).toString()));

            }
                i++;
        }
    }
}

void Widget::on_deletebtn_clicked()
{
    QString name = ui->nameedit->text();

    QSqlQuery query;
    QString sql = QString("delete from stu_info_table where name='%1'").arg(name);


    if(query.exec(sql))
    {
        QMessageBox::information(this,"","删除成功");
    }
    else
    {
        QMessageBox::information(this,"","删除失败");
    }
}

void Widget::on_searchbtn_clicked()
{

    QString name = ui->nameedit->text();
    ui->tableWidget->clear();

    QSqlQuery query;
    QString sql = QString("select * from stu_info_table where name = '%1' ").arg(name);

    if(query.exec(sql))
    {
        QMessageBox::information(this, "", "查找成功");
        int i = 0;
        while(query.next())
        {
            for (int j = 0; j < query.record().count(); j++)
            {
                ui->tableWidget->setItem(i, j, new QTableWidgetItem(query.value(j+1).toString()));
            }
            i++;
        }
    }
    else
        QMessageBox::information(this, "", "查找失败");

}
相关推荐
黄焖鸡能干四碗几秒前
MES生产执行制造系统建设(Java+Mysql)
java·大数据·开发语言·信息可视化·需求分析
workflower3 分钟前
跨链协同制造中的服务博弈与激励机制
开发语言·软件工程·制造·需求分析·个人开发·结对编程
liulilittle8 分钟前
Y组合子剖析:C++ 中的递归魔法
开发语言·c++·编程语言·函数式编程·函数式·函数编程·y组合子
金涛03192 小时前
QT-day2,信号和槽
开发语言·qt·命令模式
R-G-B8 小时前
【02】C#入门到精通——C# 变量、输入/输出、类型转换
开发语言·c#·c# 变量·c#输入/输出·c#类型转换
星河队长8 小时前
C# 软件加密方法,有使用时间限制,同时要防止拷贝
开发语言·c#
史迪奇_xxx9 小时前
10、一个简易 vector:C++ 模板与 STL
java·开发语言·c++
2301_801252229 小时前
Java中的反射
java·开发语言
Kiri霧9 小时前
Rust开发环境搭建
开发语言·后端·rust
weixin-a153003083169 小时前
[数据抓取-1]beautifulsoup
开发语言·python·beautifulsoup