Is there any work around in sqlite to cover for the lack of "char()" and "ascii()" function ?
For example:
char(97) => 'a'
ascii('a') => 97
Is there any work around in sqlite to cover for the lack of "char()" and "ascii()" function ?
For example:
char(97) => 'a'
ascii('a') => 97
For older versions use cast(X'61' as text) instead of char(97). 61 is the hexadecimal prepresentation of 97.