0

我在我当前的应用程序中使用领域,我想更新我的应用程序。现在,如果您在应用程序中使用数据库来保存一些值,则此过程需要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); 

如果它只是包装模型中的一个对象,我不确定列类型到底是什么。

我真的很感激这里的任何帮助..提前谢谢:)

4

1 回答 1

1

如果要添加对另一个 RealmObject 的引用,则称为 Link:

sampleTable.addColumn(ColumnType.LINK, "otherModel", realm.getTable(OtherModel.class);

您还可以在此处查看它的示例:https://github.com/realm/realm-java/blob/master/examples/migrationExample/src/main/java/io/realm/examples/realmmigrationexample/model/Migration。 java#L89-L89除了这个引用的是 RealmList 而不是 RealmObject

于 2015-11-15T09:01:35.570 回答