National Institute of Technology, Tiruchirappalli-15: Hotel Management System
National Institute of Technology, Tiruchirappalli-15: Hotel Management System
PROJECT WORK
Submitted By
Dr. S Nicholas
CERTIFICATE
Signature
(Dr. S Nicholas)
Problem Definition and Introduction
TASKS:
Customer Information
Room Reservation
Room Availability
Room Billing
Hall Reservation
Hall Availability
Hall Billing
SCHEMAS:
Customer
Room Type
Hall Type
Check in room
Check in hall
Tables
Table CUSTOMER
Cust id. Primary Key
Custname
Address
ph number
Table ROOMTYPE
Room no Primary key
Room type
Room rent
Availability
Table HALLTYPE
Hall no Primary key
Hall type
Hall rent
Availability
Table CHECKINROOM
Room id Foreign key
Cust id Foreign key
Check in
Check out
Table CHECKINHALL
Hall id Foreign key
Cust id Foreign key
Check in
Check out
Creating Tables
1.TABLE CUSTOMER:
Table created.
2.TABLE ROOMTYPE:
Table Created.
3. TABLE HALLTYPE:
Create table halltype(
hallno not null number(5)
halltype varchar(10)
hallrent number(10)
availability varchar(5)
primary key(hallno));
Table Created.
4. TABLE CHECKINROOM:
Table Created.
5.TABLE CHECKINHALL:
Table created.
Creating Procedures
procedure created;
Procedure created.
Procedure created.
2) PROCEDURE FOR MANAGING TRANSACTION:-
6 rows selected.
10 rows selected.
4 rows selected
RESULTS
Bill amount=3000
PL/SQL procedure successfully completed.
Bill amount=7380000
There are a lot of things which can be taken care in the project
and it can be done in better way.