私の質問は、テーブルの最大ID行を取得する方法についてです... max関数を使用していますが、エラーが発生します
これが私のコードです
public static long getLastIdQuotaAdded(Context context){
long id;
Cursor cursor;
String selection = null;
String[] selectionArgs = null;
selection = "MAX(" + C_ID + ")";
cursor=context.getContentResolver().query(URI, ALL_COLUMNS, selection, selectionArgs, null);
id = cursor.getLong(cursor.getColumnIndex(C_ID));
return id;
}
助けてくれてありがとう...:)