QT連接MYSQL數據庫的詳細步驟

 第一步要加入對應的數據庫模塊(sql)在工程文件(.pro)介紹幾個類(也是對應的頭文件)

  •  QSqlError提供SQL數據庫錯誤信息的類
  •   QSqlQuery提供瞭執行和操作SQL語句的方法     
  • QSqlQueryDatabase 處理到數據庫的連接  

 1.數據庫的連接

 //添加mysql數據庫 
        QSqlDatabase db=QSqlDatabase::addDatabase("QMYSQL"); 
        //連接數據庫
        db.setHostName("127.0.0.1");//數據庫服務器IP
        db.setUserName("root");  //數據庫用戶名
        db.setPassword("root");//數據庫用戶名密碼
        db.setDatabaseName("sys"); //數據庫名
        if(db.open()==false)
        {
            QMessageBox::information(this,"數據庫打開失敗",db.lastError().text());
            return;
        }

  如果失敗可能是QT連接mysql數據庫要一個庫(自己下載  libmysql.dll)把庫文件放在QT的安裝目錄D:\Qt\5.9\mingw53_32\bin(根據自己的目錄) 我的QT版本是5.9。數據庫是否打開用戶是否錯誤是否有這個數據庫。

2.創建表

QSqlQuery q;
q.exec("create table student(id int primary key auto_increment, name varchar(255), age int, score int)ENGINE=INNODB;");

3.給表插入數據

方法1(單行插入)

q.exec("insert into student(id, name, age,score) values(1, '張三', 24,80);");

方法2 (多行插入)又分為 odbc 風格 與 oracle風格

   1. odbc 風格

 q.prepare("insert into student(name, age,score) values(?, ?, ?)");  //?是占位符
   QVariantList name;
   name<<"素數"<<"等待"<<"安安";
   QVariantList age;
   age<<-2<<12<<14;
   QVariantList score;
   score<<0<<89<<90;
   //給字段綁定相應的值 按順序綁定
   q.addBindValue(name);
   q.addBindValue(age);
   q.addBindValue(score);
   //執行預處理命令
   q.execBatch();

  要加#include<QVariantList>頭文件 字段要按順序綁定

    2.orace風格d

//占位符 :+自定義名字
  q.prepare("insert into student(name, age,score) values(:n, :a,:s)");
  QVariantList name;
  name<<"誇克"<<"紅米"<<"鴻蒙";
  QVariantList age;
  age<<5<<10<<3;
  QVariantList score;
  score<<77<<89<<99;
  //給字段綁定 順序任意因為根據:+自定義名字
  q.bindValue(":n",name);
  q.bindValue(":s",score);
  q.bindValue(":a",age);
  //執行預處理命令
  q.execBatch();

 根據占位符區別所以字段順序可以任意

3.更新表

QSqlQuery q;
        q.exec("update student set score=76 where name='李四'");

 4.刪除表

QSqlQuery q;
        q.exec("delete from student  where name='張三'");

5.遍歷表

QSqlQuery q;
    q.exec("select *from student");
    while(q.next())   //遍歷完為false
    {
        //以下標
        //qDebug()<<q.value(0).toInt()<<q.value(1).toString()<<q.value(2).toInt() 
        <<q.value(3).toInt();
        //以字段
        qDebug()<<q.value("id").toInt()<<q.value("name").toString()<<q.value("age").toInt() 
        <<q.value("score").toInt();
    }

到此這篇關於QT連接MYSQL數據庫的文章就介紹到這瞭,更多相關QT連接MYSQL數據庫內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: