QPSQL driver not loaded Qt(QPSQL 驱动未加载 Qt)
问题描述
我在添加数据库时遇到了一些麻烦.
_dataBase = QSqlDatabase::addDatabase("QPSQL");
调用此方法后出现错误:
QSqlDatabase:未加载 QPSQL 驱动程序QSqlDatabase:可用驱动程序:QSQLITE QMYSQL QMYSQL3 QODBC QODBC3 QPSQL QPSQL7
我包括到 PATH
变量路径:
PostgreSQL9.3inPostgreSQL9.3libPostgreSQL9.3包括
我也将文件夹 sqldrivers
复制到 Debug
文件夹.还尝试将此文件夹中的 dll 复制到 Debug
.也不行.
我来这里谷歌搜索是因为我在 Windows 中遇到了同样的问题.
就我而言,为了解决这个问题,我必须为 Windows 32 位安装 PostgreSQL,因为我的 Qt 目标是 MinGW 32 位.
此外,我必须将 PATH
添加到 PostgreSQL bin 和 lib 目录中,以便 Qt 可以找到正确的 .dlls
.
@SET PATH=C:Program Files (x86)PostgreSQL9.6in;C:Program Files (x86)PostgreSQL9.6lib;%PATH%
PATH
可以在启动 Qt Creator 之前设置,也可以通过 Projects
窗格中的 Build Environment
使用 Qt Creator 本身.>
I have some trouble when I want to add a database.
_dataBase = QSqlDatabase::addDatabase("QPSQL");
After calling this method I have an error:
QSqlDatabase: QPSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QODBC QODBC3 QPSQL QPSQL7
I include to PATH
variable paths to:
PostgreSQL9.3in
PostgreSQL9.3lib
PostgreSQL9.3include
Also I copy folder sqldrivers
to Debug
folder. Also tried to copy dlls drom this folder to Debug
. Doesn't work either.
I came here googling because I had the same problem in Windows.
In my case to solve the issue I had to install PostgreSQL for Windows 32 bits since my Qt target was MinGW 32 bits.
Additionally, I had to add the PATH
to the PostgreSQL bin and lib directories so Qt could find the right .dlls
.
@SET PATH=C:Program Files (x86)PostgreSQL9.6in;C:Program Files (x86)PostgreSQL9.6lib;%PATH%
The PATH
can be set before launching Qt Creator or using the Qt Creator itself via the Build Environment
in the Projects
pane.
这篇关于QPSQL 驱动未加载 Qt的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:QPSQL 驱动未加载 Qt
基础教程推荐
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31