我正在尝试避免在android的sqlite中插入重复的值,但由于我是android sqlite的新手,我无法弄清楚避免重复的值的方法是什么。我试图在线查找解决方案,但我没有得到令人满意的答案。请帮助我解决这个问题。
下面给出了我的代码。
#我的MainActivity代码:
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("");
}
}
}
}
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);
}
}
UNIQUE constraint
,UNIQUE constraint
和Name
列的组合添加到表中[Age
。将您的Gender
语句更改为此: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()
。