24.09.2019 16:27, Kjell Rilbe wrote:
The built-in function ASCII_CHAR(n) seems to only accept integers 0..255
and not have any character set support whatsoever.
ASCII (which this function has in name) define only 127 symbols.
As a workaround, do string literals include some escape syntax to
Hi,
The built-in function ASCII_CHAR(n) seems to only accept integers 0..255
and not have any character set support whatsoever.
Are there any plans to add support for character set awareness,
presumably under a new function name?
For example:
char_from_code(n, character_set_name)
As a workaro