What is the android_metadata table?

后端 未结 3 425
粉色の甜心
粉色の甜心 2020-12-11 01:32

I try to integrate an existing database file into my Android project. I follow the instructions on this blog. They write that I have to add a table android_metadata

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-11 01:48

    If you're okay opening the DB with read-write access then you can let the openDatabase(...) call automatically generate it. For example in Android:

    SQLiteDatabase.openDatabase(m_szMainDBPath, null, SQLiteDatabase.OPEN_READWRITE);
    

提交回复
热议问题