问题描述
在我的 C# 应用程序中,我使用了 32 位架构的 sqlite3 库并且一切正常.
Within my C# application, I've used the sqlite3 library for 32 bit architecture and all works fine.
为了使用它,我已将 sqlite3.dll 文件复制到我的/bin 目录中,并创建了一个名为 SQLiteWrapper 的类,该类使用此语句导入 sqlite.dll
To use it, I've copied sqlite3.dll file into my /bin directory and I've created a class called SQLiteWrapper that uses this statement to import sqlite.dll
[DllImport("sqlite3.dll", EntryPoint = "........")]
现在,我也应该为 64 位架构下载这个 dll 文件.哪里可以下载?
Now, I should download this dll file also for 64 bit architecture.Where I can download it?
推荐答案
已编译的 64 位 SQLite 二进制文件与 System.Data.SQLite
捆绑在一起,您可以在
Complied binaries of 64-bit SQLite are bundled with System.Data.SQLite
which you can get at http://sqlite.phxsoftware.com/
这篇关于适用于 Windows 7 64 位的 SQLite3.dll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!