我在我当前的应用程序中使用领域,我想更新我的应用程序。现在,如果您在应用程序中使用数据库来保存一些值,则此过程需要migrating of tables
新的实体和架构。
我的问题是我在迁移方面遇到了一些问题,因为还没有关于 Realm Migration 的好的文档,而且我遇到了几个错误,其中包括error : Column type not valid
.
这是我的迁移方法:
首先,这是领域配置的样子:
public class RealmHelper implements RealmMigration {
public static final long SCHEMA_VERSION = 2; // This was the 2nd schema.
public static final String REALM_NAME = "john.example";
public static RealmConfiguration getRealmConfig(Context context) {
return new RealmConfiguration.Builder(context)
.name(REALM_NAME)
.schemaVersion(SCHEMA_VERSION)
.migration(new Migration())
.build();
}
}
其次,这是 Migration 类:这就是问题所在。
public class Migration implements RealmMigration {
@Override
public long execute(Realm realm, long version) {
if(version == 2){
// Issue is here. Notice the "otherModel". That is an entity in the SampleClass table.
Table sampleTable = realm.getTable(SampleClass.class);
sampleTable.addColumn(ColumnType.TABLE, "otherModel", true);
}
}
}
最后是 SampleClass,它是实际数据模型的包装器。
public class SampleClass extends RealmObject {
@SerializedName("somename")
private OtherModel otherModel;
public OtherModel getOtherModel() {
return otherModel;
}
public void setOtherModel(OtherModel otherModel) {
this.otherModel = otherModel;
}
}
根据当前的情况,我在这里收到一个错误,它说 ColumnType 无效。
Table sampleTable = realm.getTable(SampleClass.class);
sampleTable.addColumn(ColumnType.TABLE, "otherModel", true);
如果它只是包装模型中的一个对象,我不确定列类型到底是什么。
我真的很感激这里的任何帮助..提前谢谢:)