[sqlalchemy] AttributeError: 'str' object has no attribute 'decode' (Python 3.2 and SQL Server 2008R2)

2013-01-09 Thread Stephen Ray
My envirionment is SQLAlchemy 0.7.9, pyodbc 3.0.2, Python 3.2, and SQL Server 2008 R2 running on Windows 7 I have the following Python (details of the connection url removed - the connection to the db succeeds): from sqlalchemy import create_engine, MetaData, Table engine =

Re: [sqlalchemy] AttributeError: 'str' object has no attribute 'decode' (Python 3.2 and SQL Server 2008R2)

2013-01-09 Thread Michael Bayer
this is a known Python 3 specific issue which will be fixed in 0.8 and is ticket 2638: http://www.sqlalchemy.org/trac/ticket/2638. Python 3 + pyodbc is not an environment that's been tested as of yet. On Jan 9, 2013, at 7:35 AM, Stephen Ray wrote: My envirionment is SQLAlchemy 0.7.9,