Cursor = SQL1.ExecQuery("SELECT _id, name, enddate, display_date FROM event order by startdate,enddate")
That's actual code I've used, but as mentioned it depends on your DB table(s) and table structure...
I would recommend testing out the SQL select part in a SQLLite tool of your choice (mine is the Firefox add-on) and then inserting into an Exec Query.
Of course DBUtils may be used - I don't think it was around when I was looking at doing this.
and of course you've got to place the returned items into a ListView, ScrollView or similar.