SQLAlchemy Unicode Error - Querying Teradata database
问题 I'm trying to use Python's SQLAlchemy library to query a Teradata database. I was able to create the engine okay using the following code. from sqlalchemy import create_engine td_engine = create_engine('teradata://' + 'usrname' + ':' + 'pswrd' + '@' + 'myOdbcDataSource' + ':22/?charset=UTF8') But when I try to use the engine, I get the following error. ValueError: character U+590048 is not in range [U+0000; U+10ffff] This error occurs using all the functions that interact with the database