django 数据库连接出现的问题

Posted y-y-y-y

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django 数据库连接出现的问题相关的知识,希望对你有一定的参考价值。

mysqlclient 1.3.3 or newer is required; you have 0.7.11:

解决方法:

将报错文件中的如下代码注释:

if version < (1, 3, 3):
raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)

AttributeError:‘str‘ object has no attribute ‘decode‘

解决方法:

将报错文件中的如下代码注释:

if query is not None: query = query.decode(errors=‘replace‘)

以上是关于django 数据库连接出现的问题的主要内容,如果未能解决你的问题,请参考以下文章

django连接mysql

django-数据库之连接数据库

Django2.2连接mysql数据库出现django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.3 or newer is requ

Django-note1---postgresql数据库连接密码错误

Eclipse建立Django项目连接MySQL数据库报错,如图,请问该怎么解决?

py3 与 Django 连接数据库: No module named 'MySQLdb'