Sorry. Windows 7 32 bits US + with French locale + Python 3.7.0.

Turns out it had nothing to do with SQLite, and everything to do with
Python's write(), which uses the default locale, so the following is
required to output data as UTF-8 instead of cp1252 used on this computer:

========
testoutput = open("check.from.Python.txt", "w",,encoding='UTF-8')
========

Thank you.



--
Sent from: http://sqlite.1065341.n5.nabble.com/
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to