1. 程式人生 > >Python——Django-應用的models.py內容

Python——Django-應用的models.py內容

一、資料的相關配置

#資料庫的相關配置
DATABASE = {
    'default':{
        #連線的資料庫型別
        'ENGINE':'django.db.backends.sqlite3',
        #連線資料庫的地址
        'HOST':'127.0.0.1',
        #埠:
        'POST':3306,
        #資料庫的名稱
        'NAME':"day61",
        #使用者
        'USER':'root',
        #密碼
        'PASSWORD'
:'123456' } }