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.
我即将使用 Green DAO ORM 工具。我将不得不在我的数据库中插入大约六百行数据。我想知道有一种方法可以使用某种形式的 sqlite 数据库管理工具或脚本来预填充数据库。我不想手动添加这些实体中的每一个等等。在安卓代码中。这将太乏味和耗时。
将您的数据放入 CSV/JSON 文件中。然后在 DBHelper 的 onCreate 方法上,读取文件并将它们插入到数据库中。