QSqlDatabase: QMYSQL driver not loaded

Today, I ran a program that connects to a database, then a window popped up:

Meanwhile, the following error appeared on the console:

QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QODBC QODBC3 QPSQL QPSQL7

The error message is funny: the first line says QMYSQL is not loaded while the second line says it’s available. Search the error on google, you’ll be definitely led to this webpage and this page.  The content on those page is so long and so complicated. They teach you how to configure and build the sql drivers. Even I have some experience in playing with the qt configure script and qmake, I still cannot understand well  what they are talking about. I got the illusion that due to the license issue, qt won’t build the driver for mysql database and you need to build it yourself. The fact is: the drivers are already built and put in c:\Qt5.12.1\5.12.1\mingw73_64\plugins\sqldrivers: qsqlmysql.dll, qsqlmysqld.dll. Although the plugin path is not included in the PATH environment variable,  your program can find it without problem(amazing!). But the QMYSQL driver that was not loaded is not referring to this dll! It is another dll provided by MySQL, not by Qt. And the name of the dll is libmysql.dll, not mysql.dll as said in one of the mentioned posts. So the solution is simple: copy a libmysql.dll to the directory where your program resides and that will be ok. Your program will load the bridging Qt dll qsqlmysql.dll, which will load libmysql.dll, which communicates with the mysql server to query the database.

Did you like this?
Tip admin with Cryptocurrency

Donate Bitcoin to admin

Scan to Donate Bitcoin to admin
Scan the QR code or copy the address below into your wallet to send some bitcoin:

Donate Bitcoin Cash to admin

Scan to Donate Bitcoin Cash to admin
Scan the QR code or copy the address below into your wallet to send bitcoin:

Donate Ethereum to admin

Scan to Donate Ethereum to admin
Scan the QR code or copy the address below into your wallet to send some Ether:

Donate Litecoin to admin

Scan to Donate Litecoin to admin
Scan the QR code or copy the address below into your wallet to send some Litecoin:

Donate Monero to admin

Scan to Donate Monero to admin
Scan the QR code or copy the address below into your wallet to send some Monero:

Donate ZCash to admin

Scan to Donate ZCash to admin
Scan the QR code or copy the address below into your wallet to send some ZCash:
Posted in

1 Comment

Leave a Reply