Let\'s say I have query a database with a where clause
WHERE _id IN (5,6,424,2)
Is there any way for the returned cursor to be sorted in th
One approach might be to do separate SQL queries with a UNION between each. You would obviously issue each query in the order you would like it returned to you.