Django使用MySQL作为数据库

本文首发于知乎https://zhuanlan.zhihu.com/p/488566846,禁止转载。

在本文中,我们接着基于Django Rest框架实现API构建一文,介绍一下如何使用MySQL代替默认的sqlite数据库。

1. 创建项目数据库

一般一个项目对应有一个数据库,这里我们先在数据库客户端(如Navicat)中建立数据库:

CREATE DATABASE movie_api_db;
create user movie_api_user identified by '12345';
grant all on movie_api_db.* to 'movie_api_user'@'%';
FLUSH PRIVILEGES;

同时,也建立专用的项目用户(密码为12345),并赋予该数据库的全部权限。

2. 创建项目

这个在[[基于Django Rest框架实现API构建]]一文中已经完成,不再赘述了。

3. 修改数据库配置

这里可以采取两种配置方法。

3.1 配置一

第一种方法比较简单,直接在settings.py文件中把数据库这部分按如下修改即可。

DATABASES = {  
    'default': {  
        'ENGINE': 'django.db.backends.mysql',  
        'NAME': 'movie_api_db',  
        'USER': 'movie_api_user',  
        'PASSWORD': '12345',  
        'HOST': 'localhost',  
        'PORT': '3306',  
    }  
}

3.2 配置二(官方推荐)

第二种是Django官方文档中提供的方式,把MySQL的配置单独拿出来了。

import os
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'OPTIONS': {
            'read_default_file': os.path.join(BASE_DIR, 'my.cnf'), 
        }
    }
}

然后在项目根目录下,新建my.cnf文件,

[client]
database = 'movie_api_db'
user = 'movie_api_user'
password = '12345'
default-character-set = utf8
host = '127.0.0.1'
port = 3306

采用上述配置方式的话默认会调用mysqlDB模块,由于Python3已经不支持该模块,所以需要修改该配置文件所在目录下的__init__.py文件。添加以下两行,使用pymysql进行处理。

import pymysql
pymysql.install_as_MySQLdb() 

修改后,执行python manage.py migrate即可进行数据库迁移。输出如下

Operations to perform:
  Apply all migrations: admin, auth, contenttypes, movie, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying auth.0012_alter_user_first_name_max_length... OK
  Applying movie.0001_initial... OK
  Applying sessions.0001_initial... OK

数据库中也生成了相应的数据表,


生成的MySQL数据表.png

4. 删除用户和数据库

如果有需要,可使用如下命令删除项目用户和数据库。

SELECT User, Host FROM mysql.user;
REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'movie_api_user'@'%';
DROP USER 'movie_api_user'@'%';
DROP DATABASE movie_api_db;

参考

  1. https://medium.com/@omaraamir19966/connect-django-with-mysql-database-f946d0f6f9e3
  2. https://blog.csdn.net/sunhuaqiang1/article/details/69384808
  3. https://docs.djangoproject.com/zh-hans/4.0/ref/databases/#mysql-notes

你可能感兴趣的:(Django使用MySQL作为数据库)