Greendao SQLiteConstraintException: NOT NULL constraint failed
Posted mmsx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Greendao SQLiteConstraintException: NOT NULL constraint failed相关的知识,希望对你有一定的参考价值。
1、问题报错
android 项目使用greendao库的时候,存储突然报错:
android.database.sqlite.SQLiteConstraintException: NOT NULL constraint failed: SurveyTable.PDOP (code 1299)
at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)
at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:783)
at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:788)
at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:86)
at org.greenrobot.greendao.a.insertInsideTx(AbstractDao.java:368)
at org.greenrobot.greendao.a.executeInsert(AbstractDao.java:351)
at org.greenrobot.greendao.a.insert(AbstractDao.java:319)
就是数据库里面SurveyTable表里面PDOP字段有异常。那么这个意思报错,要追寻到PDOP这个字段的定义。
2、解决办法
我看了一下数据库创建时候是:"\\"PDOP\\" REAL NOT NULL ," 不能为空。为空时候没有指定值。
那么修改办法是:"\\"PDOP\\" REAL NOT NULL default 0," 为空是0。这样就可以了。
我修改之后是这样的。就是在DAO里面修改。
3、其他
再看一下下面这段代码:
这张表里面字段
"\\"statue\\" INTEGER NOT NULL ," 偶尔会报错,那就是因为statue没有指定默认值。
这种情况还会出现在数据升级时候,本地数据库版本6没有指定这个值,在数据库低版5本打开会报错,因为没有那个值。在升级后,以前旧版本程序是数据库低版5时候,打开高版本6就会报错。
以上是关于Greendao SQLiteConstraintException: NOT NULL constraint failed的主要内容,如果未能解决你的问题,请参考以下文章