Unable to load DLL 'e_sqlite3': The specified module could not be found
sqlite, sqlite-net, windows, xamarin, xamarin.forms
Solution
For me, it worked by adding the e_sqlite3 bundle to the executable project
Problem
I have a Xamarin Forms solution. I added sqlite-net-pcl as reference to all projects. It works fine on Android but crashes on Windows 8.1 and Windows Phone 8.1. I have an IOS project but I don't have OSX at the moment to try it. I use this in the Windows projects to access the database: ``` using System.IO; using SQLite; using Xamarin.Forms; using HelloXamarin.Windows; using Windows.Storage; [assembly: Dependency(typeof(SQLiteDb))] namespace HelloXamarin.Windows { public class SQLiteDb : ISQLiteDb { public SQLiteAsyncConnection GetConnection(string databaseName) { var documentsPath = ApplicationData.Current.LocalFolder.Path; var path = Path.Combine(documentsPath, databaseName); return new SQLiteAsyncConnection(path); } } } ``` Here are my references: I get this exception when trying to access the database: The type initializer for 'SQLite.SQLiteConnection' threw an exception. Unable to load DLL 'e_sqlite3': The specified module could not be found. (Exception from HRESULT: 0x8007007E) - at SQLitePCL.SQLite3Provider_e_sqlite3.NativeMethods.sqlite3_win32_set_directory(UInt32 directoryType, String directoryPath) - at SQLitePCL.SQLite3Provider_e_sqlite3..ctor() - at SQLitePCL.Batteries_V2.Init() at SQLite.SQLiteConnection..cctor() I have no idea how to solve this, please help me! The whole solution is available on GitHub: https://github.com/apspot/HelloXamarin