QT操作SQLITE

#include <QCoreApplication>
#include<QTextCodec>
#include<QSqlDatabase>
#include<QSqlQuery>
#include<QTime>
#include<QSqlError>
#include<QDebug>
#include<QSqlDriver>
#include<QSqlRecord>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    QTextCodec::setCodecForLocale(QTextCodec::codecForLocale());

    QSqlDatabase db=QSqlDatabase::addDatabase("QSQLITE");
    db.setHostName("easybook-33");
    db.setDatabaseName("qtDb.db");
    db.setUserName("chenqiang");
    db.setPassword("123456");
    db.open();



    //创建数据库表
    QSqlQuery query;
    bool sucess=query.exec("create table autombil(id int primary key,attribute varchar,type varchar,kind varchar,nation int,carnumber int,elevaltor int,distance int,oil int, temperature int)");

    if(sucess)
        qDebug()<<QObject::tr("数据库表创建成功");
    else
        qDebug()<<QObject::tr("数据库表创建失败");

    //查询
    query.exec("select * from autombil");
    QSqlRecord rec=query.record();
    qDebug()<<QObject::tr("automobil表字段数")<<rec.count();

    //插入记录
    QTime t;
    t.start();
    query.prepare("insert into autombil values(?,?,?,?,?,?,?,?,?,?)");
    long records=1000;
    for(int i=0;i<records;i++)
    {
        query.bindValue(0,i);
        query.bindValue(1,"思路");
        query.bindValue(2,"轿车");
        query.bindValue(3,"富康");
        query.bindValue(4,rand()/100);

        query.bindValue(5,rand()/100);

        query.bindValue(6,rand()/100);

        query.bindValue(7,rand()/100);

        query.bindValue(8,rand()/100);

        query.bindValue(9,rand()/100);

        sucess=query.exec();
        if(!sucess)
        {
            QSqlError lasterror=query.lastError();
            qDebug()<<lasterror.driverText()<<QString(QObject::tr("插入失败"));
        }
    }
    qDebug()<<QObject::tr("插入%1条记录,耗时:%2ms").arg(records).arg(t.elapsed());

    //排序
    t.restart();
    sucess=query.exec("select * from autombil order by id desc");
    if(sucess)
        qDebug()<<QObject::tr("排序%1条记录,耗时:%2ms").arg(records).arg(t.elapsed());
    else
        qDebug()<<QObject::tr("排序失败");

    //更新记录
    t.restart();
    for(int i=0;i<records;i++)
    {
        query.clear();
        query.prepare(QString("update autombil set attribute=?,type=?,"
                              "Kind=?,nation=?,"
                              "distance=?,oil=?,"
                              "temperature=? where id=%1").arg(i));
        query.bindValue(0,"四轮");
        query.bindValue(1,"轿车");
        query.bindValue(2,"富康");
         query.bindValue(3,rand()/100);
        query.bindValue(4,rand()/100);

        query.bindValue(5,rand()/100);

        query.bindValue(6,rand()/100);

        query.bindValue(7,rand()/100);

        query.bindValue(8,rand()/100);

        sucess=query.exec();
        if(!sucess)
        {
            QSqlError lastError=query.lastError();
            qDebug()<<lastError.driverText()<<QString(QObject::tr("更新失败"));
        }

    }
    qDebug()<<QObject::tr("更新%1条记录,耗时:%2ms").arg(records).arg(t.elapsed());

    //删除
    t.restart();
    query.exec("delete from autombil where id=5");
    qDebug()<<QObject::tr("删除一条记录,耗时:%1ms").arg(t.elapsed());
    return 0;
    //输出操作耗时



    //return a.exec();
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值