我关注了这篇帖子Android Room FOREIGN KEY constraint failed (code 787)。不幸的是,对于我来说,它不起作用。
尝试插入新的记事时,总是会出现错误。当然,数据库中存在一个主题。
你们有什么主意吗?
请在下面查看我的代码。
主题:
@Entity(tableName = "topic")
data class Topic(@PrimaryKey var id: Long? = null,
@ColumnInfo(name = "name") var name: String,
@ColumnInfo(name = "note_count") var noteCount: Int = 0,
@ColumnInfo(name = "view_count") var viewCount: Long = 0) : Serializable {
@Ignore
var notes: List<Note>? = null
}
注意:
@Entity(tableName = "note",
foreignKeys = arrayOf(ForeignKey(entity = Topic::class,
parentColumns = arrayOf("id"), childColumns = arrayOf("topic_id"), onDelete = ForeignKey.CASCADE)))
@TypeConverters(TimestampConverter::class)
data class Note(@PrimaryKey(autoGenerate = true) var noteId: Long? = null,
@ColumnInfo(name = "topic_id") var topicId: Long? = null,
@ColumnInfo(name = "title") var title: String,
@ColumnInfo(name = "caption") var caption: String? = "",
@ColumnInfo(name = "created_at") var createdAt: Date? = null) : Serializable {
}
NoteDao:
@Dao
interface NoteDao {
@Query("SELECT * from note")
fun getAll(): LiveData<List<Note>>
@Insert(onConflict = REPLACE)
fun insert(note: Note)
@Query("DELETE from note")
fun deleteAll()
@Delete
fun delete(category: Note)
@Query("SELECT * FROM note WHERE title = :title COLLATE NOCASE LIMIT 1")
fun findNoteByTitle(title: String): Note?
@Query("SELECT * FROM note WHERE topic_id = :topicId")
fun findNotesByTopicId(topicId: Long): LiveData<List<Note>>
@Query("SELECT count(*) FROM note WHERE topic_id = :topicId")
fun countNotesByTopicId(topicId: Long): Long
@Update(onConflict = IGNORE)
fun update(category: Note)
}
答案 0 :(得分:2)
我发现了问题。因为我已经创建了2个不同的数据库:TopicDataBase和NoteDataBase。
所以我只需要删除其中1个即可。 我的坏人>“ << / p>
答案 1 :(得分:1)
(@PrimaryKey var id: Long? = null,
似乎是一个问题。主键不能为空