码迷,mamicode.com
首页 > 数据库 > 详细

django 的mysql数据配置

时间:2014-08-10 21:27:20      阅读:384      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   io   strong   文件   数据   for   

原地址:http://blog.csdn.net/gamesofsailing/article/details/21465327

在成功安装python-mysql后,开始配置django的mysql连接配置

打开django项目下的setting.py文件,将DATABASES改成下面这样

 

DATABASES = {

      ‘default‘: {

          ‘ENGINE‘:‘django.db.backends.mysql‘,

         NAME‘:‘mysite‘,

         ‘USER‘:‘root‘,

          ‘PASSWORD‘:‘‘,

          ‘HOST‘:‘127.0.0.1‘,

          ‘PORT‘:‘3306‘,

      }

  }

最后运行:

python mange.py dbshell

成功进入mysql shell

 

[plain] view plaincopybubuko.com,布布扣bubuko.com,布布扣
 
  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.   
  6. Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.  
  7.   
  8. Oracle is a registered trademark of Oracle Corporation and/or its  
  9. affiliates. Other names may be trademarks of their respective  
  10. owners.  
  11.   
  12. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.  
  13.   
  14. mysql>   

django 的mysql数据配置,布布扣,bubuko.com

django 的mysql数据配置

标签:blog   http   os   io   strong   文件   数据   for   

原文地址:http://www.cnblogs.com/123ing/p/3903377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!