将 Django 与 MySQL 集成非常简单。在 DATABASES 字典中,创建类似于以下内容的条目:
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # MySQL database engine 'NAME': 'DB_NAME', # Database name 'USER': 'DB_USER', # Database user 'PASSWORD': 'DB_PASSWORD', # Database password 'HOST': 'localhost', # Host IP or 'localhost' 'PORT': '3306', # Default MySQL port } }
或者,Django 1.7 允许您使用 MySQL 选项文件:
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'OPTIONS': { 'read_default_file': '/path/to/my.cnf', # Path to MySQL option file }, } }
在 /path/to/my 中.cnf 文件,指定与之前相同的参数:
[client] database = DB_NAME host = localhost user = DB_USER password = DB_PASSWORD default-character-set = utf8
请注意顺序连接已建立:
对于本地测试,只需run:
python manage.py runserver
添加 ip:port 参数允许外部访问您的应用程序。对于生产部署,请参阅 djangobook 的“部署 Django”章节。
通过使用以下 SQL 创建数据库字符集,确保它是 UTF-8:
CREATE DATABASE mydatabase CHARACTER SET utf8 COLLATE utf8_bin
如果使用 Oracle 的 Python 3 MySQL 连接器,您的ENGINE 行应该是:
'ENGINE': 'mysql.connector.django',
在您的操作系统上安装 MySQL:
brew install mysql (MacOS)
确保您安装了正确的 Python 客户端(对于Python 3):
pip3 install mysqlclient
以上是如何配置 Django 使用 MySQL?的详细内容。更多信息请关注PHP中文网其他相关文章!