python3使用Django框架连接mysql(python3+Django+MySQL+pymysql)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3使用Django框架连接mysql(python3+Django+MySQL+pymysql)相关的知识,希望对你有一定的参考价值。

改掉系统默认的sqlite3数据库,

# Database
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases

DATABASES = {
‘default‘: {
# ‘ENGINE‘: ‘django.db.backends.sqlite3‘,
‘ENGINE‘: ‘django.db.backends.mysql‘,
# ‘NAME‘: os.path.join(BASE_DIR, ‘db.sqlite3‘),
‘NAME‘:‘djangoDB‘,
‘USER‘:‘root‘,
‘PASSWORD‘:‘123456‘,
‘port‘:‘3306‘,
}
}

然后启动报错,

ImportError: No module named ‘MySQLdb‘技术分享

据说要装MySQL-python

可是MySQL-python一直无法安装成功。

又报错ImportError: No module named ‘ConfigParser‘

因为python3中叫做configparser,是小写。技术分享

好吧,听说不用MySQL-python可以用pymsql代替,然后就赶紧下载pip install pymysql

然后再启动,还是不行啊,还是ImportError: No module named ‘MySQLdb‘

百度了下,看这篇文章http://www.jianshu.com/p/82781add8449

加了之后就好了。

技术分享

技术分享

这里说下MySQL-python吧。

MySQL-python的解释看官方说法

MySQLdb is an interface to the popular MySQL database server for Python. The design goals are:

  • Compliance with Python database API version 2.0 [PEP-0249]
  • Thread-safety
  • Thread-friendliness (threads will not block each other)

MySQL-3.23 through 5.5 and Python-2.4 through 2.7 are currently supported. Python-3.0 will be supported in a future release. PyPy is supported.

说白了就是连接mysql的python接口,有了他就可以用python来操作数据库了。类似java的JDBC那一套东西把。

 












以上是关于python3使用Django框架连接mysql(python3+Django+MySQL+pymysql)的主要内容,如果未能解决你的问题,请参考以下文章

python3.5下django2.0使用pymysql连接mysql

python3下django连接mysql数据库

python3 django连接mysql,同步表结构

No module named 'MySQLdb' python3.6 + django 1.10 + mysql 无法连接

Python3连接MySQL

CentOS + Python3.6+ Django2.0 + uwsgi + nginx + mysql web发布环境搭建