0

使用嵌入式外部集合持久化对象的正确方法是什么?目前我正在使用以下内容,但Could not create data element in dao如果我在 zonePlay 已经存在的情况下将“zoneplay”对象添加到客户 zonePlays 集合中,则会出现错误。是否应该使用某种 upsert 方法添加到外部集合中,或者我是否需要在插入之前以某种方式检查是否存在?

@DatabaseTable
public class Customer {

    @DatabaseField(id = true)
    public int id;

    @ForeignCollectionField(eager = true)
    public ForeignCollection<ZonePlay> zonePlays;

    @DatabaseField
    public String email;

    public Customer(String json) {
        final JSONArray  zonesJson = customerJson.getJSONArray("zoneplays");
        this.zonePlays = DatabaseHelper.getInstance(ctx).getCustomerDao().getEmptyForeignCollection("zonePlays");
        for (int i = 0; i < numZones; i++) {
            final JSONObject rawZone = zonesJson.getJSONObject(i);
            ZonePlay zp = new ZonePlay();
            zp.id = rawZone.getInt("id");
            zp.score = rawZone.getInt("score");
            zp.Customer = this;
            this.zonePlays.add(zp);
        }
    }

    @DatabaseTable
    public class ZonePlay {

        @DatabaseField(id = true)
        public int id;

        @DatabaseField(foreign=true)
        public Customer customer;
    }

然后我运行这个

Customer cust = new Customer(client.response);
DatabaseHelper db = DatabaseHelper.getInstance(getApplicationContext());
db.getDao(Customer.class).createOrUpdate(cust);
4

1 回答 1

0

使用嵌入式外部集合持久化对象的正确方法是什么?

“正确”的方法可能是使用它自己的 DAO 添加元素——而不是通过外部集合。这样您就可以使用以下createOrUpdate(...)方法:

  Dao<ZonePlay, Integer> zoneDao = DatabaseHelper.getInstance(ctx).getZoneDao();
  for (int i = 0; i < numZones; i++) {
        final JSONObject rawZone = zonesJson.getJSONObject(i);
        ZonePlay zp = new ZonePlay();
        zp.id = rawZone.getInt("id");
        zp.score = rawZone.getInt("score");
        zp.Customer = this;
        zoneDao.createOrUpdate(zp);
  }

如果我在 zonePlay 已存在的情况下向客户 zonePlays 集合添加“zoneplay”对象,则会收到错误消息,无法在 dao 中创建数据元素。

对。如果您尝试将 a 添加ZonePlay到 aCustomer的外部集合,这将尝试添加到表中。如果ZonePlay表中已经存在 a ,那么这将引发异常。

于 2013-05-25T14:55:54.343 回答