QT5中如何使用SQLite

roc_guo發表於2021-12-11

SQLite(sql)是一款開源輕量級的資料庫軟體,不需要server,可以整合在其他軟體中,非常適合嵌入式系統。
Qt5以上版本可以直接使用SQLite。

1、修改.pro檔案,新增SQL模組:
QT += sql
2、main.cpp程式碼如下:
#include "mainwindow.h"
#include//新增標頭檔案
#include#include#include#includeint main(int argc, char *argv[])
{
    QApplication a(argc, argv);
 
    //建立並開啟資料庫
    QSqlDatabase database;
    database = QSqlDatabase::addDatabase("QSQLITE");
    database.setDatabaseName("MyDataBase.db");
    if (!database.open())
    {
        qDebug() << "Error: Failed to connect database." << database.lastError();
    }
    else
    {
        qDebug() << "Succeed to connect database." ;
    }
 
    //建立表格
    QSqlQuery sql_query;
    if(!sql_query.exec("create table student(id int primary key, name text, age int)"))
    {
        qDebug() << "Error: Fail to create table."<< sql_query.lastError();
    }
    else
    {
        qDebug() << "Table created!";
    }
 
    //插入資料
    if(!sql_query.exec("INSERT INTO student VALUES(1, \"Wang\", 23)"))
    {
        qDebug() << sql_query.lastError();
    }
    else
    {
        qDebug() << "inserted Wang!";
    }
    if(!sql_query.exec("INSERT INTO student VALUES(2, \"Li\", 23)"))
    {
        qDebug() << sql_query.lastError();
    }
    else
    {
        qDebug() << "inserted Li!";
    }
 
    //修改資料
    sql_query.exec("update student set name = \"QT\" where id = 1");
    if(!sql_query.exec())
    {
        qDebug() << sql_query.lastError();
    }
    else
    {
        qDebug() << "updated!";
    }
 
    //查詢資料
    sql_query.exec("select * from student");
    if(!sql_query.exec())
    {
        qDebug()<<1sql_query.lasterror(); }="" else="" {="" while(sql_query.next())="" int="" id="sql_query.value(0).toInt();" qstring="" name="sql_query.value(1).toString();" age="sql_query.value(2).toInt();" qdebug()<1<1qstring("id:%1="" name:%2="" age:%3").arg(id).arg(name).arg(age);="" 刪除資料="" sql_query.exec("delete="" from="" student="" where="" if(!sql_query.exec())="" qdebug()<1<1sql_query.lasterror();="" qdebug()<1<1"deleted!";="" 刪除表格="" sql_query.exec("drop="" table="" student");="" if(sql_query.exec())="" qdebug()="" <1<1="" sql_query.lasterror();="" "table="" cleared";="" 關閉資料庫="" database.close();="" return="" a.exec();=""
3、應用程式輸出如下:

QT5中如何使用SQLiteQT5中如何使用SQLite

4、建立的 MyDataBase.db 在build的這個資料夾下:

D:\QT\project\build-sl-Desktop_Qt_5_10_1_MinGW_32bit-Debug


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2847145/,如需轉載,請註明出處,否則將追究法律責任。

相關文章