SQLAlchemy and UnicodeDecodeError(SQLAlchemy 和 UnicodeDecodeError)
问题描述
我要了
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 0: ordinal not in range(128)
当我将来自我使用 SQLAlchemy 访问的 MySQL 数据库的文本传递给这个函数时:
when I pass text coming from a MySQL database, which I am accessing using SQLAlchemy, to this function:
re.compile(ur"<([^>]+)>", flags=re.UNICODE).sub(u" ", s)
数据库编码为 utf-8,我什至将编码传递给 SQLAlchemy 的 create_engine 函数.
The database encoding is utf-8 and I am even passing the encoding to the create_engine function of SQLAlchemy.
这是我查询数据库的方式:
This is how I am querying the database:
doc = session.query(Document).get(doc_id)
s = doc.title
根据建议,我将 s.decode('utf-8') 传递给 sub
.上面的错误消失了,但对于不同的文档,我得到了不同的错误:
By suggestion, I passed s.decode('utf-8') to sub
. The error above disappeared, but I get a different error for a different document:
UnicodeDecodeError: 'utf8' codec can't decode byte 0xeb in position 449: invalid continuation byte
数据库表定义如下:
CREATE TABLE `articles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`cdate` datetime DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`content` text,
UNIQUE KEY `id` (`id`),
UNIQUE KEY `link_idx` (`link`)
) ENGINE=InnoDB AUTO_INCREMENT=4127834 DEFAULT CHARSET=utf8;
任何帮助将不胜感激
推荐答案
我已经解决了这个问题.title
列由 SQLAlchemy 作为 str
而不是 Unicode
返回.我认为将 encoding='utf8'
作为参数添加到 create_engine
会解决这个问题,但是,正确的方法是将它传递到数据库 URI 中:mysql://me@myserver/mydatabase?charset=utf8
.
I have solved the issue. The title
column was being returned by SQLAlchemy as a str
and not Unicode
.
I thought adding encoding='utf8'
as an argument to create_engine
would take care of this, however, the right way to do it is to pass it in the database URI: mysql://me@myserver/mydatabase?charset=utf8
.
感谢您的所有回答!
这篇关于SQLAlchemy 和 UnicodeDecodeError的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQLAlchemy 和 UnicodeDecodeError
基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01