diff --git a/Assets/dll/e_sqlite3.dll b/Assets/dll/e_sqlite3.dll index 7d83888183..36ce9f0738 100644 Binary files a/Assets/dll/e_sqlite3.dll and b/Assets/dll/e_sqlite3.dll differ diff --git a/Assets/dll/libe_sqlite3.so b/Assets/dll/libe_sqlite3.so index 03ef02b1bd..f9156df885 100644 Binary files a/Assets/dll/libe_sqlite3.so and b/Assets/dll/libe_sqlite3.so differ diff --git a/src/BizHawk.Client.Common/Api/Classes/SQLiteApi.cs b/src/BizHawk.Client.Common/Api/Classes/SQLiteApi.cs index 2b612af464..4e07a8d968 100644 --- a/src/BizHawk.Client.Common/Api/Classes/SQLiteApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/SQLiteApi.cs @@ -8,6 +8,11 @@ namespace BizHawk.Client.Common { public sealed class SQLiteApi : ISQLiteApi { + static SQLiteApi() + { + SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_e_sqlite3()); + } + private SqliteConnection _dbConnection; public string CreateDatabase(string name) diff --git a/src/BizHawk.Client.Common/BizHawk.Client.Common.csproj b/src/BizHawk.Client.Common/BizHawk.Client.Common.csproj index 195cfa3de7..7c169e4719 100644 --- a/src/BizHawk.Client.Common/BizHawk.Client.Common.csproj +++ b/src/BizHawk.Client.Common/BizHawk.Client.Common.csproj @@ -9,7 +9,8 @@ - + +