DLL File for windows 7 64bit(适用于 Windows 7 64 位的 DLL 文件)
问题描述
我正在将我的 Windows XP 应用程序(用 C# 编写)移植到 Windows 7 应用程序.现在我在我的 XP 应用程序(32 位)上使用 sqlite3.dll,我会为 64 位机器下载 sqlite3.dll.出于我的目的,我已将 sqlite3.dll 移动到我的/bin 文件夹中,显然,当我尝试在 Windows 7 上启动我的应用程序时,我收到一个错误.那么,我在哪里下载这个文件?
I'm porting my Windows XP application (wrote with C#) to Windows 7 application. Now I'm using sqlite3.dll on my XP App (32bit) and I would download sqlite3.dll for 64bit machine. For my purpose I've moved sqlite3.dll on my /bin folder and, obviously, when I try to start my app on windows 7 I receive an error. So, where I download this file?
请帮帮我...
我已经下载了 sqlite3 http://www.sqlite.org/download.html一个>
I've downloaded sqlite3 http://www.sqlite.org/download.html
推荐答案
SQLite 网站只有 32 位的 .dll,要获得 64 位的 .dll,您必须自己下载和编译源代码.
The SQLite website only has the 32-bit .dll, to get a 64-bit one you'll have to download and compile the source yourself.
由于您使用的是 C#,因此更简单的方法是使用 System.Data.SQLite ( http://sqlite.phxsoftware.com/).他们有一个 64 位的下载可用,它是 SQLite 本身和他们的 ADO.NET 提供程序组合成一个 .dll.我认为这是在 Windows 上使用 C# 使用 SQLite 的最简单方法.
Since you're using C#, an easier way is to use System.Data.SQLite ( http://sqlite.phxsoftware.com/ ). They have a 64-bit download available, which is SQLite itself and their ADO.NET provider combined into one .dll. It's the easiest way to use SQLite on Windows with C# I think.
更新:新的下载 URL 是 http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
Update: New download URL is http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
这篇关于适用于 Windows 7 64 位的 DLL 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:适用于 Windows 7 64 位的 DLL 文件


- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 更改自动增量起始编号? 2021-01-01