Qt QPSQL驱动问题
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你编译了插件的发布版和调试版吗?依赖项遍历器的输出看起来像您使用调试版本。您应该在 %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 );