↧
Answer by Gareth Oakley for PyODBC outputting improper UTF-16
This is a known issue that was fixed in pyodbc 2.1.8:https://code.google.com/p/pyodbc/issues/detail?id=78&can=1&q=UTF-16Unfortunately for Ubuntu LTS users the version available for Precise...
View ArticleAnswer by Jonathan for PyODBC outputting improper UTF-16
Adding CHARSET=UTF8 to the connection string worked and I now have the application up and running. For example:changecnxn = pyodbc.connect('DSN=localhost')tocnxn =...
View ArticlePyODBC outputting improper UTF-16
I'm trying to pull out a list of table names from a MySQL database. The pertinent parts of the code are as follows:conn = pyodbc.connect('...')cursor = conn.cursor()for table in cursor.tables(): print...
View Article