Unicode 与 Pyramid、SQLAlchemy
我正在使用 Pyramid 和 SQLAlchemy,但以下简化代码:
u = u"\u201C"
m = M()
m.comment = u
m.user_id = 1
session.add( m )
session.commit()
给了我一个问题
UnicodeEncodeError: 'latin-1' codec can't encode character u'\u201c' in position 0: ordinal not in range(256)
,我需要什么来解决这个问题?
编辑:
注释是“MEDIUMTEXT”列,MySQL 类型。
I'm using Pyramid and SQLAlchemy, but the following simplified code:
u = u"\u201C"
m = M()
m.comment = u
m.user_id = 1
session.add( m )
session.commit()
gives me a
UnicodeEncodeError: 'latin-1' codec can't encode character u'\u201c' in position 0: ordinal not in range(256)
what do I need to fix this?
edit:
comment is a "MEDIUMTEXT" column, MySQL type.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查数据库表是否使用 unicode 以外的编码进行编码。
另外,如果您希望从 phpMyAdmin (或您用来连接数据库的任何内容)读取您的注释,您应该将:
?charset=utf8&use_unicode=0
附加到应用程序配置文件中的连接字符串
,以便您拥有 mysql //用户:pass@localhost/dbname?charset=utf8&use_unicode=0
Check to see if your database's tables are encoded with an encoding other than unicode.
Also, if you want your comments be readable from phpMyAdmin (or whatever you are using to connect to your DB) you should append:
?charset=utf8&use_unicode=0
to your connection string in the application configuration file
so you'd have mysql://user:pass@localhost/dbname?charset=utf8&use_unicode=0
您的
comment
列很可能应为Unicode
类型,而不是String
。Most likely your
comment
column should be of typeUnicode
instead ofString
.