早上好,我遇到了问题,我创建了我的sqlite
database
并且工作正常没有问题,在输入数据时我的银行没有出现问题:
11-24 09:08:00.686 23239-23239/com.crudhightech.livros/System.out:
android.database.sqlite.SQLiteConstraintException: NOT NULL constraint failed: LISTA.DATA (code 1299)
方法:
public void inserir(Livros livros)
{
ContentValues contentValues = new ContentValues();
contentValues.put("NOME", livros.nome);
contentValues.put("PAGINAS", livros.paginas);
contentValues.put("DATA", livros.data);
contentValues.put("HORAS", livros.hora);
conexao.insertOrThrow("LISTA", null, contentValues);
}
帮帮我