I\'ve been reading, browsing, searching a lot on this, I\'ve criss-crossed stackoverflow back and forth many times and I managed to narrow my problem as much as I cou
SQLiteOpenHelper() will create an in-memory database if the name is null. Note that it will be created when you invoke getWritableDatabase().
name
null
getWritableDatabase()
Then you should insert your data.