0

我正在尝试构建一个非常简单的数据库来存储 Hangman 游戏的分数。

我建立了一个实体:

@Entity(tableName = "scores") 数据类 DBScore(@PrimaryKey var pseudo: String = "", var score: Int = 0) {

}

//从DB模型到kotlin模型的转换方法 fun List.asDomainModel(): List { return map { Score( pseudo = it.pseudo, score = it.score ) }

}

使用 db 文件用样本值预填充 db

 INSTANCE = databaseBuilder(
                    context.applicationContext,
                    AppDataBase::class.java,
                    "app_database"
                )
                    .createFromAsset("database/scores.db").build()

为此,我创建了以下数据库文件:https ://wetransfer.com/downloads/c534dd62136c94f17c0ee71f1ef39a1920201011144837/6ff2b7

但我收到一个错误,不明白我的 db 有什么问题:

原因:java.lang.IllegalStateException:预打包的数据库具有无效的架构:scores(com.example.hangmangame.database.entity.DBScore)。预期:TableInfo{name='scores',columns={pseudo=Column{name='pseudo',type='TEXT',affinity='2',notNull=true,primaryKeyPosition=1,defaultValue='null'}, score=Column{name='score', type='INTEGER', affinity='3', notNull=true, primaryKeyPosition=0, defaultValue='null'}}, foreignKeys=[], indices=[]} 找到: TableInfo{name='scores', columns={score=Column{name='score', type='INTEGER', affinity='3', notNull=false, primaryKeyPosition=0, defaultValue='null'}, pseudo=列{name='pseudo',type='TEXT',affinity='2',notNull=true,primaryKeyPosition=1,defaultValue='null'

似乎是列顺序的问题,但对我来说 SQL 对它不敏感。

感谢您的帮助。

问候

昆汀。

4

1 回答 1

2

房间预计scoreNOT NULLNULL显然,基于错误,您预先填充的数据库架构将其设置为。

于 2020-10-11T14:57:28.160 回答