I have an SQLite database, that contains many data.
I would like to get data with ORDER BY, that contains english letters and Á, É, Í, etc.
I'm using this query:
SELECT * FROM `tablename` ORDER BY `columnname`;
It gives a wrong order: A-Z, Á, É, Í, etc.
But, the correct order: A, Á, B-E, É, F-I, Í, etc.
I'm using this query through a C# application.
Thanks for help:
Horbert
P.S.: It's Hungarian language, but it could be anything else.