Qt 串連MySQL資料庫(很多相關文章)

來源:互聯網
上載者:User

標籤:base   strong   this   eth   ext   make   文章   pop   string   

今天想試試Qt如何串連資料庫的。誰知怎麼寫完了提示driver not loaded我就鬱悶了。我自己是 VS2010 + Qt4.8.4 + MySQL5.1 的環境網上查到是 C:\Qt\4.8.4\plugins\sqldrivers 裡沒有MySQL的dll以及lib檔案。所以要自己編譯下。 

1.通過Qt 4.8.4 Command Prompt命令列進入($QtDir$)\src\plugins\sqldrivers\mysql

2.由於MySQL的絕對路徑有空格,makefile無法準確找到,因此在任意盤符根目錄下建立檔案夾MySQL(例如C:\MySQL),並將($MySQLDir$)\inlcude與($MySQLDir$)\lib檔案夾拷貝至該檔案夾下2.輸入命令  qmake -o makefile "INCLUDEPATH+=c:\MySQL\include" "LIBS+=c:\MySQL\lib\opt\libmysql.lib" mysql.pronmake3.查看($QtDir$)\plugins\sqldrivers檔案夾下是否產生sqlmysql4.dll、qsqlmysql4.lib、qsqlmysqld4.dll、qsqlmysqld4.lib [cpp] view plain copy 
  1. QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");  
  2. db.setHostName("localhost");  
  3. db.setDatabaseName("mydb");  
  4. db.setUserName("root");  
  5. db.setPassword("");  
  6. if (!db.open())  
  7.     QMessageBox::information(this,tr(""),db.lastError().text());  
看成功沒。。

8820652

Qt 串連MySQL資料庫(很多相關文章)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.