当前位置:   article > 正文

qt sqlite数据库

qt sqlite

1.qt使用sqlite数据库

1.数据库操作:更新和删除

//插入操作
Qstring sqlInsert=QString("insert into staff(name,age) values('张三',20);")
if(!query.exec(sqlInsert)
{
	qDebug()<<"insert into error"<<db.lastError();
}

//查询操作
Qstring sqlSelect=QString("select *from staff;");
if(!query.exec(sqlSelect))
{
	qdbuge()<<"insert data error"<<db.lastError();
}else
{
	while(query.next())
	{
		qdebug()<<query.value("name").toString();
		qdebug()<<query.value("age").toInt();
	}
}
//删除操作
Qstring sqlDelete=Qstring("delete from staff where id=2")
//删除2号数据以后,数据库中这个号码的数据就会消失不见,下面的3号数据也不会替代2号数据
if(!query.exec(sqlDelete))
{
	qdbuge()<<"delete into error"<<db.lastError();
}
//更新数据操作
Qstring sqlUpdata=Qstring("updata staff set name='李四' where id=3")
if(!query.exec(sqlUpdata))
{
	qdbuge()<<"updata into error"<<db.lastError();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

2.使数据库的内容简单的显示在qt界面

Qstring sqlSelect=QString("select *from staff;");
if(!query.exec(sqlSelect))
{
	qdbuge()<<"insert data error"<<db.lastError();
}else
{
	while(query.next())
	{
		ui->nameLabel->setText(query.value("name").tostring());
		ui->ageLabel->setText(Qstring::number(query.value("age").toInt()));
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

下面的就是qt中显示的效果
qt显示的效果

2.数据在空间QlistWidget展示和操作

1.利用qt数据库,创建一个公司数据库(company.db),在该表中,创建一个员工表(employee),员工主要包括:用户名和密码,都是用字符串类型
2.数据库:company.db
员工表:staff
字段名有: id name age address salary

主要知识点:
1.UI界面设计-QListWidget
2.sqlite数据生成
3.sqlite数据跟UI联动

界面

在这里插入图片描述
添加的控件

在现有的list中显示非常不方便,所有需要自定义小组件
在这里插入图片描述
然后选择mainwindow创建UI文件

在.pro文件中添加

QT       += core gui sql
  • 1

mainwindow.h中天建头文件

#include <QSqlDatabase>
#include <QSqlQuery>
#include <QDebug>
#include <QSqlError>
  • 1
  • 2
  • 3
  • 4

1.根据数据库类型来连接数据
创建private:

QSqlDatabase db;
  • 1

在构造函数中添加

    db=QSqlDatabase::addDatabase("QSQLITE");//连接数据库sqlite3
    db.setDatabaseName("company.db");//数据库命名
  • 1
  • 2

2.打开数据库

    if(!db.open())
    {
        qDebug()<<"Error falied to open"<<db.lastError();
    }
  • 1
  • 2
  • 3
  • 4

3.根据需求,创建数据库所需的表(这里只需要运行一次,创建数据库即可)

    QSqlQuery query;//创建该对象时,系统自动完成跟数据库的关联
    QString sqlCreateTable=QString("create table staff(id integer primary key autoincrement,"
                              "name varchar(20),"
                              "age int,"
                              "address varchar(50),"
                              "salary int);");
    if(!query.exec(sqlCreateTable))
    {
        qDebug()<<"Error falied to open"<<db.lastError();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

点击运行,没有报错且生成数据库,说明程序运行正常
在这里插入图片描述
用程序命令,向数据库添加数据

    QString sqlInsert=QString("insert into staff(name,age,address,salary)"
                              "values('张三',20,'北京市朝阳区',12000);");
    if(!query.exec(sqlInsert))
    {
        qDebug()<<"insert into error"<<db.lastError();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/866829
推荐阅读
相关标签
  

闽ICP备14008679号