[Answer]-Unable to execute a query in Python/Django which contains non-latin characters

1👍

“FreeTDS handles Unicode for you” https://stackoverflow.com/a/964825/3033586

cursor.execute(u'SELECT * FROM sys_Атрибут'.encode('utf-8'))

Leave a comment