简体   繁体   English

如果值已经存在,如何更新领域数据库

[英]how to update realm database if values already exists

how to update values if it already exists in realm database ; 如果值已存在于领域数据库中,则如何更新; I try to build an app to show some quotations from famous authors, the app will have some authors and every author will have some quotations , when I run the app at the first time it run perfectly but when I try to run it again it show me values already exists error. 我尝试构建一个应用程序以显示著名作者的报价,该应用程序将有一些作者,每个作者都会有一些报价,当我第一次运行该应用程序时,它运行得很好,但是当我尝试再次运行它时,它会显示我的价值观已经存在错误。
this is my model classes 这是我的模特班

public class Author extends RealmObject {
@PrimaryKey
private String name;
private RealmList<Quotes>quote;

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public Author() {

}

public RealmList<Quotes> getQuote() {
    return quote;
}

public void setQuote(RealmList<Quotes> quote) {
    this.quote = quote;
}

public Author(String name, RealmList<Quotes> quote) {

    this.name = name;
    this.quote = quote;

}

} }

public class Categories extends RealmObject {
@PrimaryKey
private String category;

public String getCategory() {
    return category;
}

public void setCategory(String category) {
    this.category = category;
}

public Categories() {

}

public Categories(String category) {

    this.category = category;
}

} }

public class Quotes extends RealmObject {
private String Quote;
private Categories category;

public Categories getCategory() {
    return category;
}

public void setCategory(Categories category) {
    this.category = category;
}

public String getQuote() {
    return Quote;
}

public void setQuote(String quote) {
    Quote = quote;
}

public Quotes() {

}

public Quotes(Categories category, String quote) {

    this.category = category;
    Quote = quote;
}

} }

this is my mainActivity where I set the DataBase and get the error:value already exists 这是我的mainActivity,在其中我设置数据库并得到错误:值已经存在

public class MainActivity extends AppCompatActivity {
Realm mRealm;
Categories wisdom;
Categories fear;
Categories motivation;
Categories life;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    RealmConfiguration configuration=new RealmConfiguration.Builder(this).build();
    Realm.setDefaultConfiguration(configuration);
    mRealm=Realm.getDefaultInstance();

    mRealm.beginTransaction();


    wisdom=mRealm.createObject(Categories.class);
    fear=mRealm.createObject(Categories.class);
    wisdom.setCategory("wisdom");
    fear.setCategory("fear");
    life.setCategory("Life");
    motivation.setCategory("Motivation");

    Author john_green=mRealm.createObject(Author.class);
    john_green.setName("John Green");

    Quotes john_green_1=mRealm.createObject(Quotes.class);
    john_green_1.setQuote("My thoughts are stars I can't fathom into constellations.");
    john_green_1.setCategory(motivation);
    john_green.getQuote().add(john_green_1);

    Quotes john_green_2=mRealm.createObject(Quotes.class);
    john_green_2.setQuote("What is the point of being alive if you don’t at least try to do something remarkable?");
    john_green_2.setCategory(motivation);
    john_green.getQuote().add(john_green_2);

    mRealm.commitTransaction();
}

} }

Try finding it first, and if it doesn't find it (returns null) create the object. 尝试先找到它,如果找不到(返回null),则创建对象。

mRealm=Realm.getDefaultInstance();
mRealm.executeTransaction(new Realm.Transaction() {
    @Override
    public void execute(Realm realm) {
        Category wisdom = realm.where(Categories.class).equalTo("category", "wisdom").findFirst();
        if(wisdom == null) {
            wisdom = realm.createObject(Categories.class);
            wisdom.setCategory("wisdom");
        }
        //more code
    }
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM