0

私はマイ・マイグレーション中で、ルーム内の古いsqliteデータベースは、ユーザーの90%で動作します。問題はそれが100%ではないということです。 クラッシュレポートによると、デバイスには十分な空き領域とRAMがあり、そのほとんどはAndroid 4.4のSamsung Note 2です。また、私はアプリのどこにいてもdbを閉じていません。マイグレーションの前にルームのデータベースが閉じられています

クラッシュ:

Fatal Exception: java.lang.IllegalStateException: attempt to re-open an already-closed object: SQLiteDatabase: /data/data/com.szyk.myheart/databases/database.db 
     at android.database.sqlite.SQLiteClosable.acquireReference(SQLiteClosable.java:55) 
     at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1648) 
     at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1594) 
     at android.arch.persistence.db.framework.FrameworkSQLiteDatabase.execSQL(SourceFile:240) 
     at com.szyk.myheart.data.room.Migrations$1.migrate(SourceFile:16) 
     at android.arch.persistence.room.RoomOpenHelper.onUpgrade(SourceFile:73) 
     at android.arch.persistence.db.framework.FrameworkSQLiteOpenHelper$OpenHelper.onUpgrade(SourceFile:118) 
     at android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked(SQLiteOpenHelper.java:257) 
     at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:164) 
     at android.arch.persistence.db.framework.FrameworkSQLiteOpenHelper$OpenHelper.getWritableSupportDatabase(SourceFile:93) 
     at android.arch.persistence.db.framework.FrameworkSQLiteOpenHelper.getWritableDatabase(SourceFile:54) 
     at android.arch.persistence.room.RoomDatabase.inTransaction(SourceFile:305) 
     at android.arch.persistence.room.InvalidationTracker$1.run(SourceFile:281) 
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080) 
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573) 
     at java.lang.Thread.run(Thread.java:838) 

ルームはダガーモジュールに初期化される:

@Provides 
@ApplicationScope 
public static Database provideDatabase(Context context) { 
    return Room 
      .databaseBuilder(context, Database.class, "database.db") 
      .allowMainThreadQueries() 
      .addMigrations(Migrations.MIGRATION_25_to_26) 
      .addMigrations(Migrations.newDummyMigration(26, 27)) 
      .build(); 
} 

移行コード:

public class Migrations { 
    public static final Migration MIGRATION_25_to_26 = new Migration(25, 26) { 
     @Override 
     public void migrate(@NonNull SupportSQLiteDatabase database) { 
      Timber.d("Migrating to room"); 
      Timber.d("Migration - creating new tables"); 
      // Create the new table - it fails on first call to db 
      database.execSQL(
        "CREATE TABLE IF NOT EXISTS users_new (_id INTEGER PRIMARY KEY AUTOINCREMENT, user_name TEXT NOT NULL, user_birth_date INTEGER, is_diabetes INTEGER NOT NULL)"); 
      ... 

      Timber.d("Migration - completed"); 
     } 
    }; 

    public static Migration newDummyMigration(int from, int to) { 
     return new Migration(from, to) { 
      @Override 
      public void migrate(@NonNull SupportSQLiteDatabase database) { 

      } 
     }; 
    } 
} 

答えて

0

問題は、移行自体でした。例外が黙って(Rx)呑み込まれて初めてクラッシュした場合、次の呼び出しのたびに閉鎖されたdbでの移行が実行されました。

関連する問題