sqlite replace失效的教训

前端之家收集整理的这篇文章主要介绍了sqlite replace失效的教训前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
20140925 通宵加班解决 android版本企信 增量通讯录会有记录重复的问题,主要原因在于,旧版的创建表的脚本没有指定primary key,而在升级脚本中 使用 ALTER TABLE [testpri] ADD PRIMARY KEY id 来创建主键,实际上主键没有创建成功。而增量的代码中间,更新数据使用了 sqlite的 replace 来执行。新版建表脚本已经含了主键创建的内容,所以不会有问题;而sqlite的table一旦创建,就无法创建主键了 ,只能通过临时表来解决

replace根据主键确定被替换的是哪一条记录

,以下为原文:

You can't modify sqlite tables in any significant way after they have been created. The accepted suggested solution is to create a new table with the correct requirements and copy your data into it,then drop the old table.

here is the official documentation about this: http://sqlite.org/faq.html#q11
原文链接:https://www.f2er.com/sqlite/200225.html

猜你在找的Sqlite相关文章