Django中更改默认数据库为mysql的方法示例

作者:飘在云层的念想 时间:2024-01-23 03:19:56 

Django中默认使用sqlite3数据库,今天研究了下如何将它换成常见的mysql数据库。

由于项目用得python3,而MySQLdb没有支持python3的版本,如果使用python3.x版本时,pip install MySQLdb时会报错。

后来通过谷歌发现可以使用pymysql替代MySQLdb

1 在项目根目录下的__init__.py文件中加入如下代码:


import pymysql
pymysql.install_as_MySQLdb()

2 使用mysqlclient代替MySQLdb,安装方式为:


pip install mysqlclient

3 更改项目setting.py中对数据库的配置为:


DATABASES = {
 'default': {
   'ENGINE': 'django.db.backends.mysql',
   'NAME': 'test',
   'USER': 'username',
   'PASSWORD': 'passwd',
   'HOST': 'localhost',
   'PORT': '3306'
 }
}

4 最后通过python manage.py migrate命令,Django会在数据库中自动创建相应的表

Operations to perform:
  Apply all migrations: admin, auth, contenttypes, polls, 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 polls.0001_initial... OK
  Applying sessions.0001_initial... OK

5 在创建admin用户时,遇到了如下报错

python manage.py createsuperuser
Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create one manually.

后来查了一下,是因为使用了git来执行命令,切换到Windows自带的命令行,可以解决该问题!

来源:https://segmentfault.com/a/1190000017252348

标签:Django,默认数据库,mysql
0
投稿

猜你喜欢

  • Python数据可视化Pyecharts库的使用教程

    2023-01-24 23:17:34
  • SQL Data Services将成为云中完整的数据库

    2009-03-25 12:28:00
  • 在Pycharm中执行scrapy命令的方法

    2022-10-17 03:45:26
  • Python如何在循环内使用list.remove()

    2023-06-07 09:11:33
  • Python模拟FTP文件服务器的操作方法

    2022-11-11 19:53:04
  • python subprocess 杀掉全部派生的子进程方法

    2021-01-28 21:44:28
  • 老生常谈Python之装饰器、迭代器和生成器

    2023-04-08 08:28:19
  • Python subprocess模块详细解读

    2023-11-17 02:50:01
  • pytorch制作自己的LMDB数据操作示例

    2023-05-24 11:51:27
  • Python3 使用pip安装git并获取Yahoo金融数据的操作

    2023-11-17 21:56:48
  • python fire库的使用实例教程

    2023-08-24 14:01:22
  • jmeter正则表达式的使用

    2022-08-10 01:10:42
  • Python 的描述符 descriptor详解

    2021-03-04 21:14:17
  • python实现智能语音天气预报

    2023-05-13 14:10:27
  • python检测文件夹变化,并拷贝有更新的文件到对应目录的方法

    2023-11-07 12:56:06
  • Vue源码之关于vm.$delete()/Vue.use()内部原理详解

    2023-07-02 16:48:08
  • python 如何调用远程接口

    2022-05-09 20:59:59
  • 对mysql表进行优化、分析、检查和修复的说明

    2010-04-22 16:28:00
  • python用正则表达式提取/匹配中文汉字

    2021-06-12 23:45:50
  • Python 批量下载阴阳师网站壁纸

    2023-12-28 15:01:42
  • asp之家 网络编程 m.aspxhome.com