QSqlDatabase Driver not loaded
-
I replaced SQLFileDatabase with QMYSQL and now I get this error:
Cannot load library C:\Qt\5.11.1\msvc2017_64\plugins\sqldrivers\qsqlmysqld.dll: Unknown error 0x000000c1. QLibraryPrivate::loadPlugin failed on "C:/Qt/5.11.1/msvc2017_64/plugins/sqldrivers/qsqlmysqld.dll" : "Cannot load library C:\\Qt\\5.11.1\\msvc2017_64\\plugins\\sqldrivers\\qsqlmysqld.dll: Unknown error 0x000000c1." QSqlDatabase: QMYSQL driver not loaded QSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QODBC QODBC3 QPSQL QPSQL7
It works only for QSQLITE.
-
Did you install the needed dependencies ?
If you set the
QT_DEBUG_PLUGINS
environment variable to 1 in the Run part of the Project panel, you will see why the plugin is not loaded. -
This is the log with enabled variable: pastebin. The qsqlmysqld.dll file exists but it does not work (log from previous post). What are the dependencies?
-
I already have it in the same directory. However, I don't know it if works. It seems that it isn't detected by the program:
QFactoryLoader::QFactoryLoader() looking at "C:/Qt/5.11.1/msvc2017_64/plugins/sqldrivers/libmysqld.dll" "Failed to extract plugin meta data from 'C:/Qt/5.11.1/msvc2017_64/plugins/sqldrivers/libmysqld.dll'" not a plugin
-
As @hskoglund wrote: in the same folder as your application executable, not in the folder of the plugin.
-
-
Hmm that error 0x000000c1 could mean your 64-bit MySql is not installed 100%.
If you compile in Release mode instead of Debug, you get that same error 0x000000c1?
Edit: also check that you indeed installed the 64-bit version of MySql and not the 32-bit version, easiest way to check:
mysql.exe --V
-
I had 64-bit MySql Server and 32-bit C Connector so I replaced it with 64-bit C++ Conector. I have tried compiling in the Release mode with no success. Should I reinstall the Qt libraries?
Cannot load library C:\Qt\5.11.1\msvc2017_64\plugins\sqldrivers\qsqlmysql.dll
I think this may be the problem - file is in the directory but is not recognized by the program.
-
Can I download it (64 bit, Qt 5.11.1) without reinstalling the whole Qt?
-
I have reinstalled the Qt libraries and replaced all the files in the exe directory with the newer version, and it works now. This is what I have in the folder: exe file, libmysql.dll, Qt5Core.dll and Qt5Sql.dll (in release mode).
Thank you for help!