如何将sqlite驱动程序交付给最终用户?

发布于 2024-11-15 12:09:53 字数 250 浏览 1 评论 0原文

我用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 技术交流群。

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

发布评论

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

评论(2

雨后咖啡店 2024-11-22 12:09:53

尝试从 $QTDIR\plugins\sqldrivers 文件夹复制 qsqlite4.dll(或 qsqlite4d.dll,如果您要分发调试版本)到程序文件夹中的 sqldrivers 子文件夹。如果你不使用任何特殊的东西,Qt 应该能够从那里获取它......

Try to copy qsqlite4.dll (or qsqlite4d.dll, if you are distributing a debug build) from your $QTDIR\plugins\sqldrivers folder to a sqldrivers subfolder in your program folder. Qt should then be able to pick it up from there, if you don't use anything special...

守不住的情 2024-11-22 12:09:53

请阅读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.

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