How can I get a character code (char to int) in SQLite and convert the code to a character (int to char)?

    1 answer 1

    sqlite> select unicode('z'); 122 sqlite> select char(122); z 
    • one
      Thank you. Funny, but it really does not go away) - AseN