Android 房间数据库迁移运行多次

ice*_*rit 5 database android kotlin android-room

我正在使用房间数据库来创建本地存储,我正在尝试迁移数据库,并且在多次调用迁移函数时遇到问题。

我在这里附上我的一段代码。

class DbInstance {
companion object {
    private var db: AppDatabase? = null
    fun getDbInstance(context: Context): AppDatabase {
        if (db == null)
            db = Room.databaseBuilder(
                context,
                AppDatabase::class.java, "mydb"
            )
                .addMigrations(MIGRATION_1_2, MIGRATION_2_3)
                .build()
        return db!!
    }

    private val MIGRATION_1_2 = object : Migration(1, 2) {
        override fun migrate(database: SupportSQLiteDatabase) {

        }
    }
    private val MIGRATION_2_3 = object : Migration(2, 3) {
        override fun migrate(database: SupportSQLiteDatabase) {
            println("------> called for MIGRATION_2_3")
            database.execSQL(
                "Alter table PaymentDB add column ui_name text"
            )
        }
    }
  }
}



@Database(entities = arrayOf(PaymentDB::class), version = 3)
@TypeConverters(DbTypeConverter::class)
abstract class AppDatabase : RoomDatabase() {
    abstract fun paymentDao(): PaymentDao
}
Run Code Online (Sandbox Code Playgroud)

println("------> called for MIGRATION_2_3")多次打印(两次)。

ice*_*rit 0

最后通过这个方法得到了解决方案。

  if (DbInstance.getDbInstance(context.get()!!).openHelper.readableDatabase.version != Constants.DATABASE_VERSION) {
                        DbInstance.getDbInstance(context = context.get()!!)
                            .openHelper.readableDatabase.needUpgrade(Constants.DATABASE_VERSION)
                        DbInstance.getDbInstance(context = context.get()!!)
                            .openHelper.writableDatabase.needUpgrade(Constants.DATABASE_VERSION)
                    }
Run Code Online (Sandbox Code Playgroud)