Do you know what's wrong about my try of sorting the SQLite results?
Here it's how I do on Java (Android):
return database.query("tools", new String[] {"_id","title"}, null, null, null, null, "title Asc");
Believe, I already tried this:
SELECT _id, title FROM tools ORDER BY title ASC
But in both ways, the SQL result is sort by the field _id ASC!
Don't know what to do anymore.
Thanks
[[EDIT]]
I looked at my results and I guess what's going on.
_id title
1 test
2 Ábc
3 Abcd
title has special characteres
title. Something else would seem to be the problem.