django迁移数据到mysql时提示异常
Posted 小凌生活日记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django迁移数据到mysql时提示异常相关的知识,希望对你有一定的参考价值。
mysqlclient 1.3.13 or newer is required; you have 0.9.3
原因
因为用pymysql替换了默认的mysqlclient,Django官方推荐的数据库API driver是mysqlclient。
https://docs.djangoproject.com/en/2.2/ref/databases/#mysql-db-api-drivers
解决方法1 使用mysqlclient,去除pymysql
不要用pymysql。用mysqlclient。
安装方法:https://github.com/PyMySQL/mysqlclient-python#install
解决方法2 仍然使用pymysql
2.1 配置文件的目录中_init_.py中有如下代码
import pymysql
pymysql.install_as_MySQLdb() # 这是一个hack,为了在Djano中替代默认的mysqlclient。mysqlclient官方描述:This is a fork of MySQLdb1
2.2 点进去install_as_MySQLdb
找到version_info变量,改成
version_info = (1, 3, 13, "final", 0)
2.3 改变django.db.backends.mysql.operations.py的一行代码
query = query.decode(errors='replace') -> query = query.encode(errors='replace')
原因:mysqlclient returns bytes object, PyMySQL returns str object
参考:https://github.com/PyMySQL/PyMySQL/issues/790#issuecomment-484201388
解决方法3 仍然使用pymysql,和解决方法2类似
https://stackoverflow.com/a/55954355/5955399
解决方法4 init.py里面
import pymysql
pymysql.version_info = (1, 4, 6, 'final', 0) # change mysqlclient version
pymysql.install_as_MySQLdb()
以上是关于django迁移数据到mysql时提示异常的主要内容,如果未能解决你的问题,请参考以下文章
从 MySQL 迁移到 PostgreSQL 时,Django 用户应该知道啥?