为什么SQLAlchemy create_engine与charset = utf8返回python类型而不是类型?

前端之家收集整理的这篇文章主要介绍了为什么SQLAlchemy create_engine与charset = utf8返回python类型而不是类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用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’.有人可以请解释一下吗?

最佳答案
当我发现我成功运行多次的不同脚本不再有效时,终于找到了答案.

我已将数据库中的排序规则从utf8_general_ci更改为utf8_bin. MysqLdb 1.2.3中存在一个错误,导致utf8_bin字符串无法被识别为文本,因此不会发生unicode转换.这已在MysqLdb 1.2.4中修复.

https://sourceforge.net/p/mysql-python/bugs/289/

原文链接:https://www.f2er.com/mysql/433175.html

猜你在找的MySQL相关文章