Sqlite3 and Cyanogen
Hi, I developed an Android app that uses Sqlite3 DB. It works fine on all Android device (from 4.1) but I have an exception message on Cyanogen attempting to open DB:
Mono.Data.Sqlite.UnsafeNativeMethods:sqlite3_open_v2...
My code is:
...
connection = "URI=file:" + filepath;
try {
dbcon = new SqliteConnection(connection);
dbcon.Open();
} catch (Exception exception) {
Utility.Utils.SaveLog("OpenDB " + exception.StackTrace);
}
...
Maybe Sqlite3 not compatible with Cyanogen?
Thank you.
Comment
Your answer
Follow this Question
Related Questions
SQLite exception on Android 0 Answers
Sqlite On Android Does not work with unity 0 Answers
Class com.playerio.PlayCodeStorage not found... 0 Answers
DllNotFoundException: sqlite3 on OnePlus 7 (Android 9) 0 Answers