SQLite
 sql >> Datenbank >  >> RDS >> SQLite

Kompilierzeitwarnung von Android Room bezüglich einer Spalte im Fremdschlüssel, die nicht Teil eines Indexes ist. Was bedeutet das?

Wenn im Kotlin-Code:

Vorher

@ColumnInfo(name = "question_id")
var questionId: Long

Nach

@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long