使用Python 2.7和sqlAlchemy 0.7,我使用以下命令连接到MysqL DB:
engine = create_engine('MysqL://username:password@host/dbname?charset=utf8',echo=False)
根据sqlAlchemy文档,设置charset = utf8会自动隐含use_unicode = 1,因此所有字符串都应该以unicode形式返回. http://docs.sqlalchemy.org/en/rel_0_7/dialects/mysql.html具体给出了例子
#set client encoding to utf8; all strings come back as unicode
create_engine(‘MysqL+MysqLdb:///mydb?charset=utf8’)
那么,为什么当我在映射类中查询文本字段时,该字段最终是否为“str”类型?
Base = declarative_base(engine)
class RegionTranslation(Base):
''''''
__tablename__ = 'RegionTranslation'
__table_args__ = {'autoload':True}
def __init__(self,region_id,lang_id,name):
self.region_id = region_id
self.lang_id = lang_id
self.name = name
rtrans = session.query(RegionTranslation).filter_by(region_id = 1,lang_id = 6).one()
print (type(rtrans.name))
输出是
如果我只是接受这个并在使用之前对字符串进行解码,那么事情就好了.但我不明白为什么上面的代码没有返回类型’unicode’.有人可以请解释一下吗?
最佳答案
原文链接:https://www.f2er.com/mysql/433175.html