django框架模型创建与mysql数据库配置

django框架模型创建与mysql数据库配置,django中默认使用sqllite数据库。

使用django  startproject之后,

需要创建应用:

    python manage.py startapp booktest

这样就创建了一个应用booktest 

可以按照业务需求写模型(model)类。

在models.py中写两个类,分别表达图书和书中英雄。

from django.db import models
# Create your models here.
class BookInfo(models.Model):
    btitle=models.CharField(max_length=20)
    bpub_date=models.DateTimeField()
class HeroInfo(models.Model):
    hname=models.CharField(max_length=20)
    hgender=models.BooleanField()
    hcontent=models.CharField(max_length=100)
    hBook=models.ForeignKey('BookInfo')

CharField:表示varchar的意思,max_length最大长度。

DateTimeField表示此字段是datetime类型

BooleanField:代表bool。生成数据库字段类型可能为 tinyint 长度为1.可以自己执行迁移,看数据库中生成字段的类型。

2、python django框架中mysql数据库配置

在test1/settings.py中进行配置如下:

DATABASES = {

    'default': {

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

        'NAME': 'h1',

        'USER':'root',

        'PASSWORD':'root',

        'Host':'localhost',

        'POST':'3306',

    }

}

前提需要安装mysql驱动,pip install mysql-python.

下节看python django生成迁移,执行迁移中的坑

django框架,django mysql数据库,django创建应用


你可能感兴趣的:(python,django)