如何将sqlite驱动程序交付给最终用户?
我用Qt C++编写的程序调用sqlite数据库。在我自己的计算机上它运行良好,但在最终用户的计算机上它显示“驱动程序未加载”。确实,我不知道应该复制/安装哪些文件/dll,
你能帮我吗?
更新:我发现我需要将 sqlite3.dll、sqlite3.def 和 sqlite3.exe 复制到 windows/system32 文件夹或我的程序的文件夹中,但它仍然无法加载数据库。
操作系统是Windows xP。
谢谢
My program written in Qt C++ calls the sqlite database. On my own computer it works good, but on the end user's computer it says "Driver not loaded". True, I don't know which files/dlls should be copied/installed,
can you please help me?
Update: I found I need to copy sqlite3.dll, sqlite3.def and sqlite3.exe into windows/system32 folder OR the folder of my program but it still cannot load database.
OS is Windows xP.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试从
$QTDIR\plugins\sqldrivers
文件夹复制qsqlite4.dll
(或qsqlite4d.dll
,如果您要分发调试版本)到程序文件夹中的sqldrivers
子文件夹。如果你不使用任何特殊的东西,Qt 应该能够从那里获取它......Try to copy
qsqlite4.dll
(orqsqlite4d.dll
, if you are distributing a debug build) from your$QTDIR\plugins\sqldrivers
folder to asqldrivers
subfolder in your program folder. Qt should then be able to pick it up from there, if you don't use anything special...请阅读Windows 部署指南的插件部分。您不应该将内容放入
windows\system32
中,需要遵循特定的目录结构。确切的路径取决于您的 Qt 安装和应用程序路径。Please read the Windows deployment guide, plugins section. You are not supposed to drop things in
windows\system32
, there's a specific directory structure to follow. The exact paths depend on your Qt installation and your application path.