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 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 无法解决整理冲突 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
