Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DLL File for windows 7 64bit

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?

Please, help me...

Edit: I've downloaded sqlite3 http://www.sqlite.org/download.html

like image 470
CeccoCQ Avatar asked Oct 01 '10 13:10

CeccoCQ


1 Answers

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.

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.

Update: New download URL is http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

like image 93
Michael Low Avatar answered Sep 21 '22 05:09

Michael Low