使用fastjson导致主键自增列错误 Failed to insert row into content:

前端之家收集整理的这篇文章主要介绍了使用fastjson导致主键自增列错误 Failed to insert row into content:前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

数据库中id列是自增主键

使用fastjson将对象转为json,再将json转为ContentValues,由ContentProvider进行插入操作报错

android.database.sqlException: Failed to insert row into content://xxxxxxxxxxxxxxxxxxxxxxxxxxxx

发现是由于对象转json时,对象的id字段虽然没有值,但转json会默认生成带有id的key字段,实际插入数据库时的语句为

“insert into table xxx(id,xxx) values(null,xxx)”

解决方法:

转成json后去掉id字段

json.remove("id")

或者转成ContentValues后去掉id字段

cv.remove("id");

实际插入数据库时的语句变为
“insert into table xxx(xxx) values(xxx)”
自增字段id生效,插入成功 原文链接:https://www.f2er.com/json/290257.html

猜你在找的Json相关文章