Django MySQL Data configuration

Source: Internet
Author: User

Original address: http://blog.csdn.net/gamesofsailing/article/details/21465327

After successfully installing PYTHON-MYSQL, start configuring the Django MySQL connection configuration

Open the setting.py file under the Django Project and change the databases to the following

DATABASES = {

' Default ': {

' ENGINE ': ' Django.db.backends.mysql ',

'NAME':' MySite ',

' USER ': ' Root ',

' PASSWORD ': ',

' HOST ': ' 127.0.0.1 ',

' PORT ': ' 3306 ',

}

}

Last run:

Python mange.py Dbshell

Successfully entered MySQL shell

[Plain]View Plaincopy
  1. Mylittlefishdemacbook-air:mysite mylittlefish$ python manage.py Dbshell
  2. Welcome to the MySQL Monitor. Commands End With; or \g.
  3. Your MySQL Connection ID is 5
  4. Server version:5.6.16 MySQL Community Server (GPL)
  5. Copyright (c), the Oracle and/or its affiliates. All rights reserved.
  6. Oracle is a registered trademark of the Oracle Corporation and/or its
  7. Affiliates. Other names trademarks of their respective
  8. Owners.
  9. Type ' help ', ' or ' \h ' for help. Type ' \c ' to clear the current input statement.
  10. Mysql>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.