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.
我正在使用此博客条目创建一个 CRUD Android 应用程序作为具有预先创建的 SQLite DB 的学习 PoC ,它在读取数据时工作正常,但即使我尝试以读/写模式打开此数据库,我插入数据时遇到问题。错误消息是我正在尝试将记录插入只读数据库。有人可以帮我吗?我需要对前面提到的博客条目进行任何重构吗?
我提前道歉,我的帖子有点半生不熟。如果需要,我会尽力提供澄清。
谢谢, 德博吉特
检查您如何打开数据库。您必须以只读方式打开它。将 open 方法更改为getWritableDatabase,您的错误应该消失。
getWritableDatabase