mardi 20 janvier 2015

sorting sqlite data base from main activity?

its possible to sort my sqlite data base diffrently from mainactivity and not from my dbhandler activity?


this is my dbhandler code:



public Cursor queryAll(){
SQLiteDatabase db = dbOpenHelper.getReadableDatabase();

Cursor cursor = db.query(DbConstants.TABLE_NAME,
null,
null, null, null, null, DbConstants.MOVIE_NAME + " COLLATE LOCALIZED ASC");
return cursor;
}


i want to do the same from main activity but i want the order to be by another column. thanks.


Aucun commentaire:

Enregistrer un commentaire