rgfsd2 发表于 2015-4-1 08:54:35

python django中如何配置mysql参数

在成功安装python-mysql后,开始配置django的mysql连接配置
vi settings.py
修改
DATABASES = {
    'default': {
      'ENGINE': 'django.db.backends.sqlite3',
      'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}

DATABASES = {
    'default':{
      'ENGINE':'django.db.backends.mysql',
      'NAME':'cc',
      'USER':'cc',
      'PASSWORD':'cc123456',
      'HOST':'localhost',
      'PORT':'3306',
    }
}
然后
python manage.py dbshell
例:
# python manage.py dbshell
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor.Commands end with ; or \g.
Your MySQL connection id is 194
Server version: 5.5.36-log Source distribution
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
在cc项目下建立books app
python manage.py startapp books

页: [1]
查看完整版本: python django中如何配置mysql参数