Skip to content

suryalevii/ORM

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Ex02 Django ORM Web Application

Date:03/10/25

AIM

To develop a Django application to store and retrieve data from a Car Inventory 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

Models.py from django.db import models from django.contrib import admin

class Employee(models.Model): car_brand = models.CharField(max_length=20, help_text="Employee ID") model = models.CharField(max_length=100) price = models.IntegerField() release year = models.IntegerField()

class EmployeeAdmin(admin.ModelAdmin): list_display = ('car_brand','model','price','release year') admin.py from Django.contrib import admin from .models import Employee,EmployeeAdmin admin.site.register(Employee, EmployeeAdmin)

OUTPUT

Screenshot 2025-10-03 092318 Screenshot 2025-10-03 092623

RESULT

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%