Right now I'm running the following command from the terminal, and its giving me almost what I want.
sqlite3 file.db "SELECT colName FROM tableName;" > output.txt
Unfortunately, non-ascii characters are getting messed up. Such as dünn
turning into dünn
.
Is it possible to encode outputted text, like:
sqlite3 file.db "SELECT PSUDOENCODE(colName) FROM tableName;" > output.txt
And then the output would be like d#xFC;nn
?