Hello. I have problem with SQLite connection. I get next error:
E/AmanattoDataUpdaterHelper: Failed to get contextual suggestions.
E/AmanattoDataUpdaterHelper: package name: com.example.name_app
I put some Logs, and found that SQLiteDatabase database = this.getWritableDatabase(); statement is not executed. I ca't see Log after this. I don't know what is really cause for this problem. Please help me.
public void insertName(Name m) throws Exception {
Log.i("data", "Before Opening DB");
SQLiteDatabase database = this.getWritableDatabase();
Log.i("data", "DataBase Open"); <- i don't see this message
....
}
E/AmanattoDataUpdaterHelper: Failed to get contextual suggestions.
E/AmanattoDataUpdaterHelper: package name: com.example.name_app
I put some Logs, and found that SQLiteDatabase database = this.getWritableDatabase(); statement is not executed. I ca't see Log after this. I don't know what is really cause for this problem. Please help me.
public void insertName(Name m) throws Exception {
Log.i("data", "Before Opening DB");
SQLiteDatabase database = this.getWritableDatabase();
Log.i("data", "DataBase Open"); <- i don't see this message
....
}