mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-04 23:28:12 -05: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>();
|
||||
|
||||
String selectQuery = "SELECT * FROM " + TABLE_ALERTS;
|
||||
String selectQuery = "SELECT * FROM " + TABLE_ALERTS + " ORDER BY " + KEY_ALARM_DATE + " DESC;";
|
||||
|
||||
SQLiteDatabase db = this.getWritableDatabase();
|
||||
Cursor cursor = db.rawQuery(selectQuery, null);
|
||||
|
Loading…
Reference in New Issue
Block a user