Previously .NET SQLite libraries were available from http://sqlite.phxsoftware.com
, but they have recently been taken over by the main SQLite team and have moved System.Data.SQLite Download Page. The new packages don't seem to contain mixed assemblies anymore (single assembly containing sqlite3.dll and the .NET wrapper).
The new package comes with the .NET DLL and SQLite.Interop.dll
which based on the documentation is not needed on the desktop but my application fails to load with Unable to load DLL 'SQLite.Interop.DLL': The specified module could not be found.
. I have tried running the application under IIS/IIS Express with apppool set to 32-bit.
I have tried copying the SQLite.Interop.dll
file into the bin
folder, the system folder, and the ASP.NET temp folder but still get the same error.
Are there mixed assemblies for new releases available anywhere? If not, is there a way to fix the Unable to load DLL 'SQLite.Interop.DLL
error?