Skip to content

Nivethacse-2008/ORM

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Ex02 Django ORM Web Application

Date:01/10/2025

AIM

To develop a Django application to store and retrieve data from a bank loan database using Object Relational Mapping(ORM).

ENTITY RELATIONSHIP DIAGRAM

DESIGN STEPS

STEP 1:

Clone the problem from GitHub

STEP 2:

Create a new app in Django project

STEP 3:

Enter the code for admin.py and models.py

STEP 4:

Execute Django admin and create details for 10 books

PROGRAM

<<<<<<< HEAD
admin.py

from django.contrib import admin
from .models import car_Inventory,car_InventoryAdmin
admin.site.register(car_Inventory,car_InventoryAdmin)

models.py

=======
>>>>>>> 194384af45b75b0497fdbf9caf52dfcaa7eb1f82
from django.db import models
from django.contrib import admin
class car_Inventory(models.Model):
    plate_No=models.charField(max_length=20,primary_key=True)
    car_Model=models.charField(max_length=100)
    car_Type=models.charField(max_length=20)
    Mileage=models.IntegerField()
    Make_Date =models.DateField()
    car_pic=models.ImageField()
class car_InventoryAdmin(admin.ModelAdmin):
    list_display=(' plate_No','car_Model','car_Type',' Mileage','Make_Date',' car_pic')

OUTPUT

image

RESULT

Thus the program for creating a database using ORM hass been executed successfully

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors