You are on page 1of 15

Bloom Public School, New Delhi

Session:2022-2023

Computer Science Project on


DENTAL MANAGEMENT
SYSTEM

Submitted To: Submitted By:


Mrs. Somdatta Patra Shubham
lagwal
Class: 12-C
Roll No:
Index
S. No. Conte Page No.

nt

1 Certificate 2

2 Acknowledgement 3

3 Introduction 4

4 Mission of the project 5

5 Drawbacks of existing system 6

.
6 Advantages of proposed system 7

7 – 8

8 Source Code 9

9 Output Window 1

. 9

10. Future Enhancement 2

11. System Requirements 3

12. Bibliography 3
1
Certificate
This is to certify that Shubham Lagwal of
class XII-C has successfully completed the
project on ‘Dental Management System’
under the guidance of Mrs. Somdatta Patra
during the session 2022-2023.

Signature of Examiner: Signature of Teacher:

Signature of Principal:
Acknowledgement
I would like to express my greatest gratitude to the people
who have helped and supported me throughout my project.
I am especially grateful to my principal Mr. Ahsan Ali and
my Computer Science teacher Mrs. Somdatta Patra whose
valuable guidance has helped me throughout the project. I
also wish to thank my parents for their immense support
and interest in the project. Last but not the least, I want to
thank my friends who motivated me and supported me.
Introduction
The project Dental Management System is developed
with a view to assist dental hospitals in their functioning.
This project is aimed at providing easy access to the
administration about their patient records and their
employee records.
Mission of the Project
The aim of this project is to: -
 Make it easier for stores to manage their data
 Show the potential of
programming for work purposes
 Show how data maintenance can be easily done
through databases
 Show how to apply programming knowledge into
a real-world situation/problem
 Show how programming skills help in making
day- to-day problems easier
 Encourage stores to use programs and databases
to make their tasks simpler.
My project helps the customers to first login and
then perform operations like
Drawbacks of Existing
System
The existing system for Dental Management has the
following drawbacks: -
 Time consuming
 Inefficient
 Consumes lots of paperwork
 Requires manual calculations
 Insecure to unauthorized access
 Difficult to maintain
 Difficult to store data
 Lot of room for errors
 Unorganized data
Advantages of Proposed System
The proposed computerized system has the following
advantages: -
 Much faster
 Much more efficient
 Data is organized
 Data can be easily maintained
 Data is secure from unauthorized access
 Data is easily stored
 No errors
 No use of paperwork
 Computer calculations are fast and accurate
Input Window:
if conn.is_connected:
print(" Dental Management System ")
print("1. Login")
print("2. Exit")
print()
option=int(input("Enter your choise : "))
if option==1:
print()
user=input('User Name : ')
user=user.upper()
cur.execute("select * from accounts where User_Name like '" + user + "'")
datas=cur.fetchall()
for i in datas:
value_1=i[0]
value_2=i[1]
if user==value_1:
password=input('Password : ')
password=password.upper()
if password==value_2:
print()
print('Login succefull')
Output window:
Future Enhancements
Some things that could be added to the program to
further enhance the system are: -
 More customizability
 Graphical Interface
 More accessibility
 Online availability and accessibility
 Database stored in cloud
 Face/Fingerprint recognition for authorization
System Requirements
Minimum Hardware Requirements
 Operating System- Windows 7 or later
 Processor- Intel Core i3 Processor
 RAM- 4GB
 Storage- 2GB
 x86 64-bit CPU (Intel / AMD architecture)

Software Used
 Python
 PyCharm
 MySQL
Bibliography
 https://stackoverflow.com
 https://thedarshika.com
 Computer Science Textbook for Class
XII by NCERT
 Computer Science with Python
Textbook for Class XII by Sumita Arora

You might also like