Using in-memory sqlite android

前端 未结 3 1882
情话喂你
情话喂你 2020-12-15 06:14


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

3条回答
  •  旧时难觅i
    2020-12-15 06:30

    SQLiteOpenHelper() will create an in-memory database if the name is null. Note that it will be created when you invoke getWritableDatabase().

    Then you should insert your data.

提交回复
热议问题