I try to have an ordered result with a SQLite query from this simple query
SELECT NameFr FROM Plant
ORDER BY Plant.NameFR
I have some plant name starting with ‘é’ and those plants are not where there are supposed to be their are after the plants starting with ‘z’.
I found this solution on stack overflow for other development platform
SELECT NameFr FROM Plant
ORDER BY Plant.NameFR COLLATE BINARY
or
SELECT NameFr FROM Plant
ORDER BY Plant.NameFR COLLATE NOCASE UNICODE
In Xojo (I’m now working on iOS App) those queries return no row and no error.
Any idea ?