I have a database saved in my Android application and want to retrieve the last 10 messages inserted into the DB.
When I use:
Select * from tblmessag
cursor.moveToLast(); while (cursor.moveToPrevious()){ //do something }
with same query: select * from tblmessage where timestamp desc limit 10