Unicode 与 Pyramid、SQLAlchemy

发布于 2024-12-13 06:12:59 字数 375 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天赋异禀 2024-12-20 06:12:59

检查数据库表是否使用 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

杀手六號 2024-12-20 06:12:59

您的 comment 列很可能应为 Unicode 类型,而不是 String

Most likely your comment column should be of type Unicode instead of String.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文