如何在django中连接mysql [重复]

Posted

技术标签:

【中文标题】如何在django中连接mysql [重复]【英文标题】:How to connect the mysql in django [duplicate] 【发布时间】:2019-03-27 17:03:10 【问题描述】:

我正在尝试但未连接,并在 pip install mysqlclient 中安装得到error_mysql.c(29): fatal error C1083: Cannot open include file: 'my_config.h': No such file or directory

【问题讨论】:

欢迎来到 Stack Overflow!为了给您一个很好的答案,如果您还没有看过How to Ask,它可能会对我们有所帮助。如果您可以提供minimal reproducible example,它可能也很有用。 【参考方案1】:
you will configure your Django app to connect to MySQL. You will need to change the DATABASES dictionary to something along these lines:

DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'myproject',
        'USER': 'myprojectuser',
        'PASSWORD': 'password',
        'HOST': 'localhost',
        'PORT': '',
    

【讨论】:

我正在使用 Windows 7,我正在安装 pip install mysqlclient 它得到错误先生

以上是关于如何在django中连接mysql [重复]的主要内容,如果未能解决你的问题,请参考以下文章

如何在 django 1.10.6 中连接 MySQL 数据库

Django数据库

django如何连接Mysql中已有的数据库

如何在 Django 模板中连接内容块? [复制]

是否可以用 python 连接 MySQL 数据库 [重复]

如何在mysql数据库连接中使用抛出异常[重复]