Django入門2 資料庫

2021-09-12 17:38:38 字數 916 閱讀 4716

py manage.py migrate

該命令將建立或更新setting中的資料庫

from django.db import models

class question(models.model):

question_text = models.charfield(max_length=200)

pub_date = models.datetimefield('date published')

class choice(models.model):

question = models.foreignkey(question, on_delete=models.cascade)

choice_text = models.charfield(max_length=200)

votes = models.integerfield(default=0)

migrations for 'polls':

- create model choice

- create model question

- add field question to choice

py manage.py createsuperuser
設定好登陸郵箱、密碼,成功後,登陸localhost:8000/admin,使用使用者名稱和密碼登陸

可在此對資料表進行增刪查改

入門Django ,使用sqlite資料庫

入門django 使用sqlite資料庫 1.建立工程 django admin startproject project name 2.建立應用 3.開啟admin應用 在settings.py檔案裡新增admin應用 django.contrib.admin 在url.py檔案裡新增 from ...

C 資料庫程式設計入門(2)

書上又有乙個錯誤,我的資料庫結構式這樣的 create table dbo student sno char 5 collate chinese prc ci as not null,sname varchar 8 collate chinese prc ci as null,s bit null,...

django查詢資料庫

特殊過濾 django資料庫查詢時,一般就是 modelname.objects.a ll modelname.objects.filter modelname.objects.get 等等,在過濾時,如果過濾條件假設是其中的某一欄位,比如 id,要求id 5,或者是乙個範圍比如1 id 5,前者可...