Możesz użyć takiego zapytania:
db.execSQL("DELETE FROM " + TABLE_NAME +
" WHERE " + currentdate + " - " + TIMESTAMP_DB + " > 2*24*60*60");
Dla update
metody, napisz wyrażenie SQL w WHERE
klauzula w whereClause
parametr; whereArgs
jest potrzebne tylko dla wartości ciągów:
db.update(TABLE_NAME, currentdate + " - " + TIMESTAMP_DB + " > 2*24*60*60", null);