Two changes need to be made to **all** of the `DllImports` for ["winsqlite3"](https://github.com/oysteinkrog/SQLite.Net-PCL/blob/61a4a0c21997adcc12fc0d5500896084a6c0880e/src/SQLite.Net.Platform.WinRT/SQLiteApiWinRT.cs#L811): 1. Calling convention has to be switched from `Cdecl` to `StdCall` 2. `ExactSpelling` has to be set to `true` For [example](https://github.com/oysteinkrog/SQLite.Net-PCL/blob/61a4a0c21997adcc12fc0d5500896084a6c0880e/src/SQLite.Net.Platform.WinRT/SQLiteApiWinRT.cs#L813): `[DllImport("winsqlite3", EntryPoint = "sqlite3_open", CallingConvention = CallingConvention.Cdecl)]` should be: `[DllImport("winsqlite3", EntryPoint = "sqlite3_open", CallingConvention = CallingConvention.StdCall, ExactSpelling = true)]`