mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-04-21 00:41:33 -04:00
Sort alerts by the alarm date
This commit is contained in:
parent
bc5bbf8189
commit
c77e8553fe
@ -158,7 +158,7 @@ public class AlertDB extends SQLiteOpenHelper {
|
|||||||
|
|
||||||
List<Alert> alertList = new ArrayList<Alert>();
|
List<Alert> alertList = new ArrayList<Alert>();
|
||||||
|
|
||||||
String selectQuery = "SELECT * FROM " + TABLE_ALERTS;
|
String selectQuery = "SELECT * FROM " + TABLE_ALERTS + " ORDER BY " + KEY_ALARM_DATE + " DESC;";
|
||||||
|
|
||||||
SQLiteDatabase db = this.getWritableDatabase();
|
SQLiteDatabase db = this.getWritableDatabase();
|
||||||
Cursor cursor = db.rawQuery(selectQuery, null);
|
Cursor cursor = db.rawQuery(selectQuery, null);
|
||||||
|
Loading…
Reference in New Issue
Block a user