In 07.2023 (07/dd/2023) I did a select like
select lower('ÄÖÜ')
to compare with ‘äöü’ which seemed to work.
In 01.2024 I did the same and it did not work.
Reason is that Umlauts where not converted at all by lower/upper.
Maybe in between version of MBS or Xojo where changed and I know I did some updates to the newest versions.
Anyway, SQLite documentation says that lower/upper do only work for ASCII - the “Ö” is C396 in unicode and is still C396 after lower(‘Ö’).
Any idea how to solve this and make “Ö” and “ö” equal in a comparison?
I tried with like but that didn’t work either.
Any help appreciated!
Thanks in advance!
5 posts - 2 participants