我正在尝试在我的项目中使用Room和LiveData。在我的应用程序中,我有作者表。数据插入得很好,但是当我尝试从表中读取某些内容时,它没有给我记录。我还看到了带有 SQLite Opener 软件的数据库。它向我展示了所有数据。
下面是我的作者实体。
@Entity(tableName = "authors")
data class AuthorModel(
@PrimaryKey(autoGenerate = true)
@ColumnInfo(name = "id") val id: Long = 0,
@ColumnInfo(name = "name") var name: String
)
这是我的 Author Dao 界面。
@Dao
interface AuthorDao {
@Query(value = "SELECT * FROM authors")
fun allAuthors(): LiveData<List<AuthorModel>>
@Query(value = "SELECT * FROM authors WHERE id = :authorId")
fun authorWithId(authorId: Long): LiveData<AuthorModel?>
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insert(author: AuthorModel): Long
}
最后,这是我的 RoomDatabase 类。
@Database(entities = [AuthorModel::class], version = 1)
abstract class BookLibraryDatabase : RoomDatabase() {
abstract fun authorDao(): AuthorDao
}
感谢您的时间。