Android Room迁移未正确处理

问题描述 投票:0回答:2

我已经编写了Android Room迁移,但不知怎的,它没有正确处理它。

这是错误:

    Expected:
TableInfo{name='Likes', columns={creatorId=Column{name='creatorId', type='TEXT', notNull=false, primaryKeyPosition=0}, messageId=Column{name='messageId', type='TEXT', notNull=false, primaryKeyPosition=0}, createdAt=Column{name='createdAt', type='TEXT', notNull=false, primaryKeyPosition=0}, id=Column{name='id', type='TEXT', notNull=false, primaryKeyPosition=0}, dbId=Column{name='dbId', type='INTEGER', notNull=true, primaryKeyPosition=1}, timestamp=Column{name='timestamp', type='TEXT', notNull=false, primaryKeyPosition=0}}, foreignKeys=[], indices=[]}
 Found:
TableInfo{name='Likes', columns={dbId=Column{name='dbId', type='INTEGER', notNull=true, primaryKeyPosition=1}, creatorId=Column{name='creatorId', type='TEXT', notNull=false, primaryKeyPosition=0}, messageId=Column{name='messageId', type='TEXT', notNull=false, primaryKeyPosition=0}, id=Column{name='id', type='TEXT', notNull=false, primaryKeyPosition=0}, timestamp=Column{name='timestamp', type='TEXT', notNull=false, primaryKeyPosition=0}}, foreignKeys=[], indices=[]}

这是迁移脚本:

database.execSQL("CREATE TABLE Likes (id TEXT, creatorId TEXT, messageId TEXT,"
                       + " timestamp TEXT, dbId INTEGER NOT NULL, PRIMARY KEY(dbId))");

这是模型类:

@Entity(tableName = "Likes")
public class LikeDbModel {

@PrimaryKey private int dbId;
private String id;
private String creatorId;
private String messageId;
private String timestamp;
private String createdAt;

public LikeDbModel() {
}
}

有人可以帮忙吗?

android android-sqlite android-room
2个回答
0
投票

它在迁移中缺少createdAt字段


0
投票

看来你正在尝试添加创建的列。在创建数据库时,将.addMigrations(MIGRATION_1_2)行添加到数据库的创建中,我认为您已经完成了。

INSTANCE = Room.databaseBuilder(context.getApplicationContext(),
                        YourDatabase.class, "your_database.db")
                        .addMigrations(
                                MIGRATION_1_2
                        )
                        .build();

然后通过先删除表然后创建表或使用alter table语句来正确实现迁移。

    static final Migration MIGRATION_1_2 = new Migration(1, 2) {
    @Override
    public void migrate(SupportSQLiteDatabase db) {
           //Either
           db.execSQL("drop table Likes"); //if existing table
           db.execSQL("CREATE TABLE Likes (id TEXT, creatorId TEXT, messageId TEXT,"
                   + " timestamp TEXT, createdAt TEXT, dbId INTEGER NOT NULL, PRIMARY KEY(dbId))")

            //or
            db.execSQL("alter table add createdAt TEXT");

    }
};

您得到的错误是因为空间正在将您的实体与数据库中的现有表进行比较。您还可以在try / catch SQLiteException中包装迁移语句,以查看哪些工作正常。

如果您不想丢失表中的数据,请改用alter table。如果要删除/创建,请确保首先使用新结构将数据复制到新表,将数据复制到新表,删除原始Likes表并将新表重命名为Likes。参见示例here

房间文件:https://developer.android.com/training/data-storage/room/migrating-db-versions

© www.soinside.com 2019 - 2024. All rights reserved.