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.
我的应用程序正在生产中,我想在用户更新应用程序时管理用户数据而不丢失他们的数据,我如何使用sqflite. 明确地,我想添加一列并删除另一列。
sqflite
您可能可以使用原始 sql添加列,但 sqlite(因此 sqflite)不支持删除列。为此,您需要执行以下操作:
onUpgrade
抱歉,这不是一个完整的答案,但如果我处于你的情况,这是我会去的方向。
我有同样的问题,发现这篇文章似乎是一个很好的解决方案。