gpt4 book ai didi

android - 更新应用程序时如何从 Realm 迁移数据

转载 作者:太空狗 更新时间:2023-10-29 16:30:07 28 4
gpt4 key购买 nike

我是 Realm 的新手。我将 realm 用作本地数据库,如果应用程序已更新,我不想丢失数据。我之前做的是

 public static Realm getRealmInstanse(){


RealmConfiguration config = new RealmConfiguration
.Builder()
.deleteRealmIfMigrationNeeded()
.build();
try {
return Realm.getInstance(config);
} catch (RealmMigrationNeededException e){
try {
Realm.deleteRealm(config);
//Realm file has been deleted.
return Realm.getInstance(config);
} catch (Exception ex){
throw ex;
//No Realm file to remove.
}
}
}

现在我想我应该做以下事情:

public static Realm getRealmInstanse(){
RealmConfiguration config = new RealmConfiguration
.Builder()
.migration(new RealmMigration() {
@Override
public void migrate(DynamicRealm realm, long oldVersion, long newVersion) {

}
})
.build();

return Realm.getInstance(config);
}

为了复制数据,我应该在 migrate() 方法中做什么?那么架构呢?我应该使用架构版本吗?出于什么目的?

更改架构的逻辑是什么?例如,如果出于某种原因我要更改数据库的结构,我可以只更改 migrate() 方法中的模式吗?

我找到了这个例子,但我实际上并不知道它是在保存数据还是只是更改架构

 if (oldVersion == 0) {
RealmObjectSchema personSchema = schema.get("Person");

// Combine 'firstName' and 'lastName' in a new field called 'fullName'
personSchema
.addField("fullName", String.class, FieldAttribute.REQUIRED)
.transform(new RealmObjectSchema.Function() {
@Override
public void apply(DynamicRealmObject obj) {
obj.set("fullName", obj.getString("firstName") + " " + obj.getString("lastName"));
}
})
.removeField("firstName")
.removeField("lastName");
oldVersion++;
}

最佳答案

What should i do inside migrate() method in order to copy the data?

没有,数据会在应用程序更新之间自动保留(前提是您同时 deleteRealmIfMigrationNeeded() 未更改架构)。

如果您更改数据库架构并设置了deleteRealmIfMigrationNeeded(),数据将被删除以便自动迁移到新架构。

如果您更改数据库架构并且设置deleteRealmIfMigrationNeeded(),您必须提供一个RealmMigration,否则应用程序将崩溃并出现“需要迁移”异常。

For example, if for some reason i will change the structure of the db, can i just change the schema inside migrate() method?

是的。您可以与传递给 @Override public void migrate() 的 DynamicRealm 进行交互,以指定迁移到新架构版本所需的更改。

你应该给 Realm 的 migration documentation阅读。


旁注:构建 RealmConfiguration 就像您在代码中所做的那样,您应该在每次请求实例时都完成。相反,只做一次,最好是在您的 Application 类中。另见 configuring a realm .

关于android - 更新应用程序时如何从 Realm 迁移数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41633744/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com