//コンテンツ プロバイダ内
public int delete(Uri uri, String selection, String[] selectionArgs) {
int uriType = sURIMatcher.match(uri);
SQLiteDatabase sqlDB = myDB.getWritableDatabase();
int rowsDeleted = 0;
switch (uriType) {
case STUDENTS:
// rowsDeleted = sqlDB.delete(MyDBHandler.TABLE_STUDENTS, selection, selectionArgs);
rowsDeleted = sqlDB.delete(MyDBHandler.TABLE_STUDENTS, selection + " ?", new String [] {"limit 1"});
break;
default:
throw new IllegalArgumentException("Unknown URI: " + uri);
}
getContext().getContentResolver().notifyChange(uri, null);
return rowsDeleted;
}
コンテンツ リゾルバーで
private ContentProviderClient myCR;
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"+ STUDENT_TABLE);
public MyDBHandler(Context context, String name, CursorFactory factory, int version) {
super(context, DATABASE_NAME, factory, DATABASE_VERSION);
myCR =
context.getContentResolver().acquireContentProviderClient(CONTENT_URI);
public boolean deleteStudent(String studentName) {
String selection = "sName = " + studentName + " LIMIT 1";
rowsDeleted = myCR.delete(CONTENT_URI, selection,null);
//also tried this
String selection = "sName = " + studentName ;
rowsDeleted = myCR.delete(CONTENT_URI.buildUpon().encodedQuery("limit 1").build(), selection,null);
名前に基づいてエントリを削除している学生テーブルがあり、同じ名前の学生が多数いる可能性があるため、削除機能を最初のエントリのみを削除するように制限したいと考えています。学籍番号で削除なんて言わないでください。