Skip to content Skip to sidebar Skip to footer

Sqlite Exception When Creating A Connection

I receive an SQLite exception when creating a connection. This worked before I installed VS2015 RTM. Client (PCL): _databaseConnection = DependencyService.Get().C

Solution 1:

You need to initialize a new connection and you will need an ISQLitePlatform implementation.

var platform = new SQLitePlatformAndroid();
var connection = new SQLiteConnection(platform, path);

Post a Comment for "Sqlite Exception When Creating A Connection"