没有加载QMYSQL驱动程序(其他解决方案?)

时间:2016-10-06 19:01:26

标签: mysql windows qt

我遇到了无法连接MySQL数据库的问题。但this回答了我的问题。问题是:我不想将“libmysql.dll”和“libmysql.lib”复制并粘贴到每个使用MySQL的项目中(如“Basti Vagabond”所述)。

还有其他方法可以解决这个问题吗?

请注意,我的情况与上面链接中的情况完全相同。

2 个答案:

答案 0 :(得分:1)

您有几个选项可以自动完成此过程:

一种方法是将库路径添加到main.cpp

qApp->addLibraryPath( "C:\\path\\something\\mysql.dll" );

或者您自动完成整个过程:

From Qt Docs:

  

QMAKE_POST_LINK
  指定将TARGET链接在一起后要执行的命令。此变量通常为空,因此不执行任何操作。

# If operating system is Windows perform this V
win32 {
    # Create variable containing the path to your project compile folder ( probably no need to change since this is automated by Qt )
    OUT_PWD_WINDOWS         = $$OUT_PWD
    # Switch frontslashes with double backslashes
    OUT_PWD_WINDOWS         ~= s,/,\\,g

    # Create variables to set debug path and release path
    # Gotta change the \\debug and \\release to the correct debug and release folders
    OUT_PWD_WINDOWS_DEBUG   = $$quote( $$OUT_PWD_WINDOWS\\debug   )
    OUT_PWD_WINDOWS_RELEASE = $$quote( $$OUT_PWD_WINDOWS\\release )

    # Create variables to set the path to libs and dlls you want to copy ( *.lib will copy all files ending in .lib from the specified path )
    # you can change that however to mysql.lib for example if you only want 1, same goes for .dll
    LIBS_TO_COPY            = $$quote( C:\\MySql\\libs\\*.lib )
    DLLS_TO_COPY            = $$quote( C:\\MySql\\libs\\*.dll )


    # Copy libraries and dlls into debug path / else copys them into the release folder
    # essentially this is saying if( config == debug ) perform tasks else perform tasks for release, which is add actions to be executed after linking
    CONFIG( debug , debug|release ) {
        # Here we add the copy command to the QMAKE_POST_LINK variable which will be executed once the linking is done
        # We have 1 entry for libs and 1 for dlls, same goes for the release which is in the else
        QMAKE_POST_LINK += $$quote( xcopy $$LIBS_TO_COPY $$OUT_PWD_WINDOWS_DEBUG    $$escape_expand( \n\t ) )
        QMAKE_POST_LINK += $$quote( xcopy $$DLLS_TO_COPY $$OUT_PWD_WINDOWS_DEBUG    $$escape_expand( \n\t ) )
    } else {
        QMAKE_POST_LINK += $$quote( xcopy $$LIBS_TO_COPY $$OUT_PWD_WINDOWS_RELEASE  $$escape_expand( \n\t ) )
        QMAKE_POST_LINK += $$quote( xcopy $$DLLS_TO_COPY $$OUT_PWD_WINDOWS_RELEASE  $$escape_expand( \n\t ) )
    }
}

现在重命名/删除您的构建文件夹,将其放在.pro文件中,进行路径调整,然后将其粘贴到所有.pro文件中,以便将这些库提供给您需要的位置它们。

您甚至可以通过创建加载到.pro文件中的宏/键绑定/摘录来自动执行此操作。

旁注: 对于其他操作系统,您必须使用特定于操作系统的命令

进行编写

编译器输出:

xcopy C:\Actions\*.lib C:\Users\xyz\dev\C++\Qt\build-Test-Desktop_Qt_5_7_0_MSVC2015_64bit-Debug\debug
C:\Actions\Test - Copy (2).lib
C:\Actions\Test - Copy.lib
C:\Actions\Test.lib
3 File(s) copied
xcopy C:\Actions\*.dll C:\Users\xyz\dev\C++\Qt\build-Test-Desktop_Qt_5_7_0_MSVC2015_64bit-Debug\debug
C:\Actions\test - Copy (2).dll
C:\Actions\test - Copy.dll
C:\Actions\test.dll
3 File(s) copied
01:45:08: The process "C:\Qt\Qt5.7.0\Tools\QtCreator\bin\jom.exe" exited normally.

答案 1 :(得分:0)

你无法做很多事情 - Windows在少数地方搜索.dll,所有这些对于来自不同地方的共享库来说都很糟糕(想想如果更多的话会发生什么)一个应用程序想要安装它自己的副本/版本):

引自https://msdn.microsoft.com/en-us/library/7d83bc18(v=vs.140).aspx

  

通过隐式和显式链接,Windows首先搜索"已知的DLL",例如Kernel32.dll和User32.dll。 Windows然后按以下顺序搜索DLL:

     
      
  1. 当前进程的可执行模块所在的目录。

  2.   
  3. 当前目录。

  4.   
  5. Windows系统目录。 GetSystemDirectory函数检索此目录的路径。

  6.   
  7. Windows目录。 GetWindowsDirectory函数检索此目录的路径。

  8.   
  9. PATH环境变量中列出的目录。

  10.   

你做的是1.这是唯一明智的做法。

在您系统上的用户上,您也可以使用5.并修改PATH(但如果您想创建可部署的软件包,这不起作用!)。

2.,3。和4.对于应用程序开发人员来说完全没用。