# settings.py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'OPTIONS': {
'read_default_file': '/path/to/my.cnf',
},
}
}
# my.cnf[client]
database = NAME
user = USER
password = PASSWORD
default-character-set = utf8
元数据
db_table定义的数据表明最好为小写,以避免mysql在不同系统上表名的问题, 如mysql在windows系统上是区分大小写的,在linux上是不区分大小写的。
参考
http://python.usyiyi.cn/django/ref/databases.html#mysql-notes
网友评论