gpt4 book ai didi

android - 如何升级SQLite版本?

转载 作者:行者123 更新时间:2023-11-30 02:38:46 26 4
gpt4 key购买 nike

我正在开发我的第一个应用程序并使用以下代码查看我的 SQLite 版本:

Cursor cursor = SQLiteDatabase.openOrCreateDatabase(":memory:", null).rawQuery("select sqlite_version() AS sqlite_version", null);
String sqliteVersion = "";
while(cursor.moveToNext())
sqliteVersion += cursor.getString(0);
Log.e("Version", sqliteVersion);

我的版本是3.7.11。

由于需要使用一些新功能,如何升级到最新版本?

最佳答案

您使用 SQLiteDatabase 访问的 SQLite 库是 Android 的一部分,无法被替换(除非您在获得 root 权限的设备上重新编译 Android)。

你必须 compile your own copy of SQLite with the NDK并通过您自己的包装函数/对象访问它。

关于android - 如何升级SQLite版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26087182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com