【发布时间】:2016-09-20 00:00:11
【问题描述】:
如果域数据库中已经存在值,如何更新它;
我尝试构建一个应用程序来显示一些著名作家的语录,
该应用程序将有一些作者,每个作者都会有一些引文,
当我第一次运行该应用程序时,它运行良好,但是当我再次尝试运行它时,它显示值已存在错误。
这是我的模型类
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;
}
}
这是我设置数据库的 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();
}
}
【问题讨论】:
-
如果你的对象有一个主键,你可以调用
copyToRealmOrUpdate()与具有相同PK的对象。否则,您可以使用 @quidproquo 的答案。
标签: java android android-studio realm