如何在将数据插入sqlite数据库时避免重复值



我试图避免在android中的sqlite中插入重复值,但我不知道避免插入重复值的方法,因为我是android sqlite的新手。我试图在网上找到解决方案,但没有得到任何满意的答案。请帮我解决这个问题。

我的代码如下所示。

#我的主要活动代码:

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private EditText nameEditText, ageEditText, genderEditText;
MyDatabaseHelper myDatabaseHelper;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
nameEditText = findViewById(R.id.nameEditTextId);
ageEditText = findViewById(R.id.ageEditTextId);
genderEditText = findViewById(R.id.genderEditTextId);
Button addButton = findViewById(R.id.addButtonId);
myDatabaseHelper = new MyDatabaseHelper(this);

addButton.setOnClickListener(this);
}
@Override
public void onClick(View view) {
String name = nameEditText.getText().toString();
String age = ageEditText.getText().toString();
String gender = genderEditText.getText().toString();
if (view.getId() == R.id.addButtonId) {
if(TextUtils.isEmpty(name) && TextUtils.isEmpty(age) && TextUtils.isEmpty(gender) ){
Toast.makeText(getApplicationContext(), "Enter details and submit ", Toast.LENGTH_LONG).show();
}
else if (TextUtils.isEmpty(name)) {
Toast.makeText(getApplicationContext(), "Insert the name first ", Toast.LENGTH_LONG).show();
}else if ( TextUtils.isEmpty(age)){
Toast.makeText(getApplicationContext(), "Insert an age ", Toast.LENGTH_LONG).show();

}else if (TextUtils.isEmpty(gender)){
Toast.makeText(getApplicationContext(), "Insert the gender ", Toast.LENGTH_LONG).show();
}else {
long rowId = myDatabaseHelper.insertData(name, age, gender);
if (rowId == -1) {
Toast.makeText(getApplicationContext(), "unsuccessfull ", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getApplicationContext(), "Row " + rowId + " is sucessfully inserted ", Toast.LENGTH_LONG).show();
}
//clear screen after inserting value;
nameEditText.setText("");
ageEditText.setText("");
genderEditText.setText("");

}

}
}
}

我的MyDataBaseHelper代码:

public class MyDatabaseHelper extends SQLiteOpenHelper {
private static final  String DATABASE_NAME = "Student.db";
private static final String TABLE_NAME = "student_details";
private static final String ID = "_id";
private static final String NAME = "Name";
private static final String AGE = "Age";
private static final String GENDER = "Gender";
private static final int VERSION_NUMBER = 3 ;
private static final String CREATE_TABLE = "CREATE TABLE  "+TABLE_NAME+" ("+ID+" INTEGER PRIMARY KEY AUTOINCREMENT, "+NAME+" VARCHAR(255), "+AGE+" INTEGER, "+GENDER+"); ";
private static final String DROP_TABLE = "DROP TABLE IF EXISTS " + TABLE_NAME;
private Context context;
MyDatabaseHelper(@Nullable Context context) {
super(context, DATABASE_NAME, null,VERSION_NUMBER);
this.context = context;
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
try {
Toast.makeText(context,"onCreate is called  ", Toast.LENGTH_LONG).show();
sqLiteDatabase.execSQL( CREATE_TABLE);
}catch (Exception e){
Toast.makeText(context,"Exceptin : " +e, Toast.LENGTH_LONG).show();
}

}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
try {
Toast.makeText(context,"onUpgrade is called " , Toast.LENGTH_LONG).show();
sqLiteDatabase.execSQL(DROP_TABLE);
onCreate(sqLiteDatabase);
}catch (Exception e){
Toast.makeText(context,"Exceptin : " +e, Toast.LENGTH_LONG).show();
}

}
long insertData(String name, String age, String gender){
SQLiteDatabase sqLiteDatabase = this.getWritableDatabase();
ContentValues contentValues = new ContentValues();
contentValues.put(NAME,name);
contentValues.put(AGE,age);
contentValues.put(GENDER,gender);
return sqLiteDatabase.insert(TABLE_NAME,null,contentValues);
}
}

为列NameAgeGender的组合向表中添加一个UNIQUE constraint
将您的CREATE语句更改为:

private static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " (" +
ID +" INTEGER PRIMARY KEY AUTOINCREMENT, " +
NAME + " TEXT, " +
AGE + " INTEGER, "+
GENDER + " TEXT, " +
"UNIQUE(" + NAME + ", " + AGE + ", "  + GENDER + ")" +
");";

如果您只希望Name是唯一的:

private static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " (" +
ID +" INTEGER PRIMARY KEY AUTOINCREMENT, " +
NAME + " TEXT UNIQUE, " +
AGE + " INTEGER, "+
GENDER + " TEXT +
");";

如果尝试插入重复项,insert()方法将返回-1

我不知道是否有一种简单的方法可以做到这一点,但我认为它可能会有所帮助,为什么不创建另一列来组合要防止重复的值,并在添加任何新行之前进行检查你可以将这个答案单独保存,直到你找到最佳实践

最新更新