hospital final

47
HOSPITAL DATABASE MANAGEMENT SYSTEM

Upload: amrendu-kumar

Post on 08-Aug-2015

56 views

Category:

Software


3 download

TRANSCRIPT

Page 1: Hospital final

HOSPITAL DATABASE MANAGEMENT SYSTEM

Page 2: Hospital final

Project Report On “Hospital Database Management System” Session 2014

Submitted byAmrendu KumarBhavesh JainChahat Patel

B.E VTH SEM ISE DEPTARTMENT

Under the guidance of Ms. ASHA M.V Mr. Prakash

Page 3: Hospital final

Abstract

The main intention of introducing this system is to reduce the manual work at health centers.

Where the system must be placed? How to use the system? How is it beneficial to the health Centre?

Page 4: Hospital final

PROJECT OUTLINE

Introduction

Overview

Problem definition

General description

Assumptions

Functional requirements

Non functional requirements

System requirement

Deployment

System design

ER diagram Schema diagram

Relations User interface

ImplementationQuerying

Conclusion Bibliography

Page 5: Hospital final

Introduction

Purpose To perform automation of hospital management Software includes maintaining,searching,editing

patient/staff details Report generation Scope Can be used in any hospital,clinic,dispensary or

pathological lab for maintaining patient details Requirements statements in this document are both

functional and non functional

Page 6: Hospital final

Overview

Project is related to Hospital Management System.

The project maintains two levels of users • Administrator Level-Doctor • User Level-Data Entry OperatorUser or Administrator can search a

patient’s record by his/her name or their registration date

Page 7: Hospital final

Problem definition

• Lack of immediate retrievals• Lack of immediate information storage• Lack of prompt updating• Error prone manual calculation• Preparation of accurate and prompt

reports

Page 8: Hospital final

General description

PRODUCT PRESPECTIVE This Hospital Management System is a self-

contained system that manages activities of the hospital as Patient Info. Various stakeholders are involved in the hospital patient info system.

PRODUCT FEATURES PATIENT REGISTRATION GENERATION PATIENT CHECKOUT

Page 9: Hospital final

It is assumed that one hundred IBM compatible computers will be available before the system is installed and tested.  

It is assumed that the Hospital will have enough trained staff to take care of the system  

Assumptions and dependencies

Page 10: Hospital final

Functional Requirements

1. REGISTRATION Add patient Assign ID Delete Patient ID2. GENERATION PAITENT INFORMATION WARD INFORMATION STAFF INFORMATION

Page 11: Hospital final

Non Functional requirements

AccuracyReliabilityAvailability Immediate retrieval of information Immediate storage of informationEasy to operate

Page 12: Hospital final

System Requirement

Processor•Intel Pentium III 832 MHz

RAM •512 Mb

Hardisk •2 Gb or Above

Hardware requirements :

Operating

system

• XP/Vista/7/8

Front

End :

• JAVA – NETBeans IDE

Back

End :

• Oracle Database 11g

Software Requirements :

Page 13: Hospital final

Deployment

Page 14: Hospital final

System design

Database of the product is designed based on the instances of the following diagrams1.ER DIAGRAM2.SCHEMA DIAGRAM

Page 15: Hospital final

ER Diagram

Page 16: Hospital final

Schema Diagram

Page 17: Hospital final

Relations

Page 18: Hospital final

User Interface

User Interface is designed using java programming in Net Beans IDE

The software provides good graphical interface for the user. Any administrator can operate on the system, performing the required task such as create, update, viewing the details of the database.

Allows user to view quick reports Allows user to insert or retrieve the

information

Page 19: Hospital final

System login page

Page 20: Hospital final

System login error

Page 21: Hospital final

Main page

Page 22: Hospital final

Patient registration

Page 23: Hospital final

Registration of a Staff

Page 24: Hospital final

Search for a Patient detail

Page 25: Hospital final

Logging out from a Database

Page 26: Hospital final

Report generation

Page 27: Hospital final

Implementation of relations

Page 28: Hospital final
Page 29: Hospital final
Page 30: Hospital final
Page 31: Hospital final
Page 32: Hospital final
Page 33: Hospital final
Page 34: Hospital final

Lets do some QUERYING now!!

Page 35: Hospital final

1.Find all the patients who are admitted to Ward number “1003” and are above 25 years of age

Command :

sql> select distinct pname from patient p where p.pwno=‘1003’ and p.age>25;

Page 36: Hospital final
Page 37: Hospital final

2.Find all the patient who are treated by Dr. Arman singh

Command :

sql> select pname from doctor d,patient p, staff s where p.pdid = d.did and d.did = s.sid and s.fname=‘arman’ and s.lname=‘singh’;

Page 38: Hospital final
Page 39: Hospital final

3.Find the name of the staff members who are above 40 years of age.

Command :

sql> select fname,lname from staff s where s.age >40;

Page 40: Hospital final
Page 41: Hospital final

4.Find all the female patients who are assigned to ward which is at location level1.Command :

sql> select pname from patient p, ward w where p.pwno = w.wno and p.gender=‘f’ and w.wlocation=‘level1’;

Page 42: Hospital final
Page 43: Hospital final

Conclusion

 The project Hospital Management System (HMS) is for computerizing the working in a hospital. The software takes care of all the requirements of an average hospital and is capable to provide easy and effective storage of information related to patients that come up to the hospital. It generates test reports. The system also provides the facility of backup as per the requirement. This SRS document is used to give details regarding Hospital Patient Info Management System. In this all the functional and non-functional requirements are specified in order to get a clear cut idea to develop a project.

Page 44: Hospital final

BIBLIOGRAPHY

Our references constitute of sound out with internet, vaious database books and academical orientations

Page 45: Hospital final

One more thing…..

Page 46: Hospital final

Life is precious, cherish your health!!

Page 47: Hospital final