Qt QPSQL驱动问题

发布于 2024-10-09 15:57:49 字数 447 浏览 1 评论 0原文

我正在尝试将 postgresql 与 Qt SQL 模块连接。我成功编译了psql驱动程序(src\plugins\sqldrivers\psql)。但是当我尝试连接 postgresql 时,我收到此消息;

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

我在 Windows XP SP3 中使用 PostgreSQL 8.3、Qt 4.7.1 和 Visual Studio 2008。(我也尝试这个,但没有帮助)

I'm trying to connect postgresql with Qt SQL module. I successfully compile psql driver(src\plugins\sqldrivers\psql). But when i try to connect postgresql, i get this message;

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

I'm using PostgreSQL 8.3, Qt 4.7.1 and Visual Studio 2008 in Windows XP SP3.(I also try this, but didn't help)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-10-16 15:57:49

你编译了插件的发布版和调试版吗?依赖项遍历器的输出看起来像您使用调试版本。您应该在 %QTDIR%\plugins\sqldrivers 目录中拥有 qsqlpsql4.dll 和 qsqlpsqld4.dll。您可以使用以下命令检查程序中使用的插件路径: QString QLibraryInfo::location ( QLibraryInfo::PluginsPath );

Did you compile the release and debug versions of the plugin? The output of the dependency walker looks like you work with the debug version. You should have qsqlpsql4.dll and qsqlpsqld4.dll in the %QTDIR%\plugins\sqldrivers directory. You can check the plugin path that is used in your program with: QString QLibraryInfo::location ( QLibraryInfo::PluginsPath );

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文