Steps for Django to connect to local MySQL database (pycharm)

Steps for Django to connect to local MySQL database (pycharm)

Step 1: Change DATABASES in setting.py

# Configure database DATABASES = {
  'default': {
    # A database that comes with python, which is basically not used# 'ENGINE': 'django.db.backends.sqlite3',
    # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    # Register our own database connection 'ENGINE': 'django.db.backends.mysql', # Database engine 'NAME': 'productone', # Database name 'USER':'root', # User name for connecting to the database 'PASSWORD':'yourpassword', # User password 'HOST':'127.0.0.1', # The IP address of the host of the database to be accessed 'PORT':'3306', # Default mysql access port }
}

The second step is to enter in the console: pip install pymysql to install pymysql

insert image description here

Step 3: Add the following code to __init__.py in the project

Because I had the following problem↓, I added pymysql.version_info = (1,4,13,"final",0)

insert image description here

import pymysql
pymysql.version_info = (1,4,13,"final",0)
pymysql.install_as_MySQLdb()

Finally, you can execute the program python manage.py migrate!!! Completed

Summarize

This is the end of this article about connecting Django to a local MySQL database (pycharm). For more information about connecting Django to a local MySQL database (pycharm), please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Django ForeignKey and database FOREIGN KEY constraints
  • How to connect Django framework to MySQL database in PyCharm
  • Django uses multiple databases
  • Django inspectdb steps to operate existing database data
  • Python web framework (django, flask) to achieve mysql database read and write separation example
  • Django solves the problem that the class in the model cannot be written to the database and the database does not have this field
  • Python's Django framework implements database queries (methods that do not return QuerySet)
  • Django database returns queryset to implement encapsulation as a dictionary
  • How to add constraints to the database in a Django project

<<:  Idea configures tomcat to start a web project graphic tutorial

>>:  Vue+Element UI realizes the encapsulation of drop-down menu

Recommend

Nginx dynamic and static separation implementation case code analysis

Separation of static and dynamic Dynamic requests...

VMware Workstation 14 Pro installation Ubuntu 16.04 tutorial

This article records the specific method of insta...

Example of using Docker Swarm to build a distributed crawler cluster

During the crawler development process, you must ...

Win10 64-bit MySQL8.0 download and installation tutorial diagram

How do I download MySQL from the official website...

Linux echo text processing command usage and examples

The description of echo in the Linux help documen...

CentOS 6.5 installation mysql5.7 tutorial

1. New Features MySQL 5.7 is an exciting mileston...

Pitfalls and solutions encountered in MySQL timestamp comparison query

Table of contents Pitfalls encountered in timesta...

A brief discussion on what situations in MySQL will cause index failure

Here are some tips from training institutions and...

Detailed explanation of the available environment variables in Docker Compose

Several parts of Compose deal with environment va...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

Super simple qps statistics method (recommended)

Statistics of QPS values ​​in the last N seconds ...