Change letter case problem for national characters
Posted: Sun 03 Jan 2016 19:38
Dear Sirs,
I try to do some usage of UPPER / LOWER functions. They unfortunately improperly change case of national characters, i.e. shall return but returns
So national characters are left unchanged. I tried to use Direct mode and Library mode with no change. I also checked "UseUnicode" with no change.
SQLite Manager plugin in Firefox gives proper result of UPPER/LOWER, so I assume this is not sqlite error itself. May be shall I change in any way my input string to unicode (if it is not)?
In reality it also fails when using comparison with what I tried to use.
Could you propose any solution?
Michal
I try to do some usage of UPPER / LOWER functions. They unfortunately improperly change case of national characters, i.e.
Code: Select all
SELECT UPPER("sześć")
Code: Select all
SZEŚĆ
Code: Select all
SZEść
SQLite Manager plugin in Firefox gives proper result of UPPER/LOWER, so I assume this is not sqlite error itself. May be shall I change in any way my input string to unicode (if it is not)?
In reality it also fails when using comparison with
Code: Select all
COLLATE NOCASE
Could you propose any solution?
Michal