SQLite with Android NDK

后端 未结 4 2119
抹茶落季
抹茶落季 2020-12-01 08:30

Is it somehow possible to use SQLite with C++ on an Android phone? I haven\'t found any documentation around how this could be possible.

4条回答
  •  死守一世寂寞
    2020-12-01 08:43

    It isn't possible to use the built-in SQLite via NDK (or it wasn't six months ago when I looked into this), that can only be accessed with Java. However it may be possible to link in your own completely separate C++ build of SQLite.

提交回复
热议问题