码迷,mamicode.com
首页 > 数据库 > 详细

SQLAlchemy解决ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory

时间:2014-10-06 15:55:40      阅读:898      评论:0      收藏:0      [点我收藏+]

标签:python   sqlalchemy   you must not use 8-bit bytestrings   

SQLAlchemy 报ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings错误

python2.x中最讨厌的就是编码问题了,写下来以备后用。

解决方法:

1.开头加上:

#encoding:  utf-8


 2.尝试把字符转化为unicode格式

unicode( str_name )

这种方法有时会出现:“UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe5 in position 108: ordinal not in range(128 ...” 这种问题。

解决方法:

import sys
reload(sys)
sys.setdefaultencoding(‘utf8‘)


SQLAlchemy解决ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory

标签:python   sqlalchemy   you must not use 8-bit bytestrings   

原文地址:http://xiaosu.blog.51cto.com/2914416/1560796

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!