Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个使用 SQLite 数据库的 android 应用程序。问题是:我可以在我的应用程序中导入一个可以升级 SLQLite 数据库结构的外部脚本(即 script.sql)吗?
为什么不呢,SQLiteDatabase 类有“rawQuery”方法,可以执行任何有效的 sql 命令。因此,您只需要创建数据库,从文件中读取脚本并将其提供给 SQLiteDatabase 实例