我正在使用以下方法在数据库中插入名称
public void insertContact(String name)
{
ContentValues newContact = new ContentValues();
newContact.put("name", name);
open(); // open the database
database.insert("contacts", null, newContact);
close(); // close the database
} // end method insertContact
我可以做一些检查来停止数据重复吗?我的意思是说,如果数据库中已经存在名称,则不应插入新名称。