Starting from:

$25

CS3431 -Phase 3 - Complete Hospital Application  - Solved

Building a Database Application 


 

  

Make sure you do not detach from session when you are using “screen” command. Use 

“exit” command to properly close your session. If your terminal or computer crashed you should restore your session with “screen -r”. Always check amount of sessions before running a new one. You can do it with “screen -ls” command. You will be provided with a list of detached sessions in a format “XXXXX.pts-YYY.CCCWORKZ”. You can restore specific sessions with “screen -r XXXXX” command and close it with “exit”. It is your responsibility to maintain no more than 1 open session.
 

 

Part 1 (25 Points):   Views (5 Points each requirement) 
•      Create a view named CriticalCases that selects the patients who have been admitted to Intensive Care Unit (ICU) at least 2 times. The view columns should be: Patient_SSN, firstName, lastName, numberOfAdmissionsToICU. o  Hint: ICU is a service that is stored in table ‘RoomService’ 

 

•      Create a view named DoctorsLoad that reports for each doctor whether this doctor has an overload or not. A doctor has an overload if they have more than 10 distinct admission cases; otherwise, the doctor has an underload. Notice that if a doctor examined a patient multiple times in the same admission, that still counts as one admission case. The view columns should be: DoctorID, 

          graduatedFrom, load. 

o The load column should have either of these two values ‘Overloaded’, or ‘Underloaded’ according to the definition above. 

 

•      Use the views created above (you may need the original tables as well) to report the critical-case patients with number of admissions to ICU greater than 4. 

 

•      Use the views created above (you may need the original tables as well) to report the overloaded doctors that graduated from WPI. You should report the doctor ID, firstName, and lastName. 

 

 



 

•      Use the views created above (you may need the original tables as well) to report the comments inserted by underloaded doctors when examining critical-case patients. You should report the doctor Id, patient SSN, and the comment. 

 

 

Part 2 (35 Points):   Triggers [5 Points each requirement) 
Given the following requirements, create one or more triggers that ensure that these requirements are always satisfied. Think of the three events Insert, Update, and Delete because you may need triggers on one or more of these events to meet the requirements below. 

Hint: You are allowed to combine several requirements into one trigger 

 

•      If a doctor visits a patient who has been in the ICU during their current admission, they must leave a comment. An example of this could be a patient whose admission involved a 1 day stay in a room designated as an Emergency Room, a 2 hour stay in an operating room, and a 1 day stay in a room designated as an ICU. If a doctor was to visit the patient during this admission then they must leave a comment. 

 

•      The insurance payment should be calculated automatically as 65% of the total payment. If the total payment changes, then the insurance amount should also  change. 

o If in your DB you store the insurance payment as a percent, then it should be always set to 65%. 

 

•      Ensure that regular employees (with rank 0) must have their supervisors as division managers (with rank 1). Also, each regular employee must have a supervisor at all times.  

 

•      Similarly, division managers (with rank 1) must have their supervisors as general managers (with rank 2). Division managers must have supervisors at all times. General Managers must not have any supervisors. 

 

•      When a patient is admitted to an Emergency Room (a room with an Emergency service) on date D, the futureVisitDate should be automatically set to 2 months after that date, i.e., D + 2 months. The futureVisitDate may be manually changed later, but when the Emergency Room admission happens, the date should be set to default as mentioned above. 

 

•      When a new piece of equipment is purchased and it has not been inspected for over a month, check if there is an equipment technician who can service it. If there is, update the inspection date.  

 

•      When a patient leaves the hospital (admission leave time is set), print out the patient’s first and last name, address, all of the comments from doctors involved 

              in that admission, and which doctor (name) left each comment. o Hint: You can print from a trigger using the function dbms_output.put_line(). 

Before it works you need to make sure to run the following line in SQLPlus  

Sql> set serveroutput on; 

                                                                                                                                                                                                                             2 

 

 


Hint:    If you are faced with error “Table xxxx is mutating….”, then try to change either the trigger timing “Before ß→ After” and/or the trigger level “Row ß→ Statement levels”. 

  

Pa         rt 3 (40 Points): Access DB using JDBC [8 Points each requirement) You are required to write a java program that accesses the database, performs some insertions and updates, executes some queries, and prints results on the screen. 

 

Your program will be the interface to perform some simple functionality over the database. Your database should already contain data. 

 

You are required to do the following:             

Assume your program is called “Reporting.java”. The program will always take two parameters, e.g., username, and Password to connect to the DB. (Pass them as parameters such that the TAs can easily set them as needed without recompilation). 

 

(0)   When your program is executed without any additional arguments, e.g., 

                                 > java Reporting <userName> <Password>
 Then the program should output the following options, and then terminate: 

 

1-  Report Patients Basic Information 
2-  Report Doctors Basic Information 

3-  Report Admissions Information 

4-  Update Admissions Payment 
  

 

(1)   When the program is executed with an argument 1 as follows: 

                                > java Reporting <userName> < Password > 1
Then, we are now in the “Reporting Patients Basic Info.” mode. The program should print out the following line:     

 

Enter Patient SSN: <and wait for user’s input> 
   

When the user enters a SSN, the program should execute a query over the patient table   and print on the screen the patient’s information as follows: 

 

Patient SSN: …. 
                                               Patient First Name: … 

Patient Last Name: … 

Patient Address: … 
   

Then the program terminates. 

3

(2)   When the program is executed with an argument 2 as follows: 

                                > java Reporting <userName> < Password >  2
Then, we are now in the “Reporting Doctors Basic Info.” mode. The program should print ou  t the following line: 

 

Enter Doctor ID: <and wait for user’s input> 
   

When the user enters an ID, the program should query the doctor table and print on the screen the following in          formation, and then terminate: 

 

Doctor ID: …. 

Doctor First Name: … 
                                                    Doctor Last Name: … 

Doctor Gender: … 

Doctor Graduated From: … 

Doctor Specialty: … 
 

 

(3)   When the program is executed with an argument 3 as follows: 

                                > java Reporting <userName> < Password >        3 
Then, we are now in the “Reporting Admissions Info.” mode. The program should print out the following line:              

 

Enter Admission Number: <and wait for user’s input> 
   

When the user enters a number, the program should query the admission table and print on the screen the following information, and then terminate: 

 

Admission Number: …. 
 
Patient SSN: … 
             
Admission date (start date): ….. 
 
Total Payment: … Rooms: 

RoomNum: … 
             

             

FromDate:….         ToDate:….. 
RoomNum:… … 
FromDate:….          ToDate: …. 

             
Doctors examined the patient in this admission: 
Doctor ID: … 

Doctor ID: 

 

Notice that we need to print the room(s) that the patient has stayed in during this admission. Also make sure the printed doctor IDs are unique (no repetition). 

 

 

(4)   When the program is executed with an argument 4 as follows: 

                                > java Reporting <userName> < Password >         4 
Then, we are now in the “Updating Admission Payment” mode. The program sho  uld print out the following line: 

 

Enter Admission Number: <and wait for user’s input> 

Enter the new total payment: <and wait for user’s input> 
 

Then your program should update the total payment value for the specified admission number in the databas      e. 

//Now if you execute option 3 again, you should get the new payment value.

 

The file must run correctly, creating all tables and then the views and triggers. If the file’s syntax is not correct (and the file did not run), you will lose 20 points in addition to any other deductions. 

 

 

2)    A java file containing Part 3. Submit the code (.java) file. The TA will compile your file on the CCC.wpi.edu server. So, make sure your file compiles on these machines. 

 

 

3)    Any comments or assumptions that you have, you can write them to a separate 

.pdf file. 

 

Important: For each of the requirements in Part 2, include what trigger(s) you created to enforce this requirement. You need to state the event type (Before or After), the operation (Insert, Update, or Delete), and the granularity (For each row, or For each statement) and on which table. No code should be included here. 



 

 

More products