Within my C# application, I've used the sqlite3 library for 32 bit architecture and all works fine.
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 = "........")]
Now, I should download this dll file also for 64 bit architecture. Where I can download it?