-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatabaseWork.java
More file actions
919 lines (650 loc) · 27.7 KB
/
DatabaseWork.java
File metadata and controls
919 lines (650 loc) · 27.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
package healthcareLook;
/*This class was made to do all the work for the database.
* This means retrieving and storing data.
*/
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
public class DatabaseWork {
static Connection conn = null;
static PreparedStatement prepareState= null;
static String command = null;
static ResultSet rows = null;
static ResultSet rows2 = null;
static ResultSet patidcheck = null;
static ResultSet getidstaff = null;
static ResultSet retreievestaff = null;
static ResultSet retreievepatient = null;
static Statement sqlState = null;
static Statement sqlState2 = null;
static Employee employeeData = null;
static Patient patientData = null;
static String idNumber = null;
static ArrayList<Appointment> patientId = new ArrayList<Appointment>();
public static Boolean IDCheckPatient(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select patient_id from patient where patient_id = '" + id + "'";
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(rows.next()){
return true;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return false;
}
public static Boolean IDCheckStaff(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select staff_id from employee where staff_id = '" + id +"'";
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(rows.next()){
return true;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return false;
}
public static Patient IDPatientConfirmation(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select * from patient where patient_id = '" + id +"'";
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(rows.next()){
// System.out.print("getting patient info");
patientData = new Patient(rows.getString(1), rows.getString(2),rows.getString(3),rows.getString(4),rows.getString(5),rows.getString(6),rows.getString(7),rows.getString(8),rows.getString(9)
,rows.getString(10),rows.getString(11),rows.getString(12),rows.getString(13),rows.getString(14),rows.getString(15));
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return patientData;
}
public static Employee IDStaffConfirmation(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select * from employee where staff_id = '" + id +"'";
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(rows.next()){
System.out.print("getting patient info");
employeeData = new Employee(rows.getString(1), rows.getString(2),rows.getString(3),rows.getString(4),rows.getString(5),rows.getString(6),rows.getString(7),rows.getString(8),rows.getString(9)
,rows.getString(10),rows.getString(11),rows.getString(12),rows.getString(13));
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return employeeData;
}
public static Boolean SavePatient(Patient pat){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
prepareState = conn.prepareStatement("insert into patient (first_name , last_name , ssn, address, city, zip_code, county, phone, date_of_birth, gender, immunization_status, emergency_contact, emergency_contact_relationship, emergency_contact_number, insurance, patient_id) " + "values(?, ? , ?, ? , ?, ?, ? , ?, ? , ?, ?, ? , ?, ?, ?, ?)");
prepareState.setString(1, pat.getfName());
prepareState.setString(2, pat.getlName());
prepareState.setString(3, pat.getSsn());
prepareState.setString(4, pat.getAddress());
prepareState.setString(5, pat.getCity());
prepareState.setString(6, pat.getZipCode());
prepareState.setString(7, pat.getCounty());
prepareState.setString(8, pat.getPhone());
prepareState.setString(9, pat.getDateOfBirth());
prepareState.setString(10, pat.getGender());
prepareState.setString(11, pat.getImmunizationStatus());
prepareState.setString(12, pat.getEmergencyContact());
prepareState.setString(13, pat.getRelationship());
prepareState.setString(14, pat.getEmergencyContactNumber());
prepareState.setString(15, pat.getInsurance());
prepareState.setNull(16, java.sql.Types.INTEGER);
@SuppressWarnings("unused")
int add = prepareState.executeUpdate();
return true;
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
return false;
}
catch(ClassNotFoundException e){
e.printStackTrace();
return false;
}
}
public static String RetrieveIDPatient(String ssn){
try{
Class.forName("com.mysql.jdbc.Driver");
// System.out.println("Getting id");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select * from patient where ssn = '" + ssn +"'";
retreievepatient = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(retreievepatient.next()){
idNumber = retreievepatient.getString(16);
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return idNumber;
}
public static Boolean SaveStaff(Employee pat){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
prepareState = conn.prepareStatement("insert into employee (first_name , last_name , ssn, address, city, zip_code, county, phone, date_of_birth, gender, staff_position, staff_speciality, staff_salary, staff_id) " + "values(?, ? , ?, ? , ?, ?, ? , ?, ? , ?, ?, ? , ?, ?)");
prepareState.setString(1, pat.getfName());
prepareState.setString(2, pat.getlName());
prepareState.setString(3, pat.getSsn());
prepareState.setString(4, pat.getAddress());
prepareState.setString(5, pat.getCity());
prepareState.setString(6, pat.getZipCode());
prepareState.setString(7, pat.getCounty());
prepareState.setString(8, pat.getPhone());
prepareState.setString(9, pat.getDateOfBirth());
prepareState.setString(10, pat.getGender());
prepareState.setString(11, pat.getPosition());
prepareState.setString(12, pat.getSpeciality());
prepareState.setString(13, pat.getSalary());
prepareState.setNull(14, java.sql.Types.INTEGER);
@SuppressWarnings("unused")
int add = prepareState.executeUpdate();
return true;
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
return false;
}
catch(ClassNotFoundException e){
e.printStackTrace();
return false;
}
}
public static void RemoveStaff(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Delete from employee where staff_id = '" + id +"'";
sqlState.executeUpdate(command);
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
}
public static String RetrieveIDStaff(String ssn){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select * from employee where ssn = '" + ssn +"'";
retreievestaff = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(retreievestaff.next()){
idNumber = retreievestaff.getString(14);
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return idNumber;
}
public static Boolean SetAppointmentPatient(String id,String complain, String day, String doc, String time) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
if(doc.isEmpty()){
prepareState = conn.prepareStatement("insert into appointment (appointment_date, appointment_time, complaint , patient_id, requested_doctor, staff_id, checkin) " + "values(?, ?, ?, ?, ?, ?, ?)");
prepareState.setString(1, day);
prepareState.setString(2, time);
prepareState.setString(3, complain);
prepareState.setString(4, id);
prepareState.setNull(5, java.sql.Types.VARCHAR);
prepareState.setNull(6, java.sql.Types.VARCHAR);
prepareState.setString(7, "N");
}
else{
prepareState = conn.prepareStatement("insert into appointment (appointment_date, appointment_time, complaint, patient_id, requested_doctor, staff_id, checkin) " + "values(?, ?, ? , ?, ?, ?, ?)");
prepareState.setString(1, day);
prepareState.setString(2, time);
prepareState.setString(3, complain);
prepareState.setString(4, id);
prepareState.setString(5, doc);
prepareState.setNull(6, java.sql.Types.VARCHAR);
prepareState.setString(7, "N");
}
@SuppressWarnings("unused")
int add = prepareState.executeUpdate();
return true;
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
return false;
}
catch(ClassNotFoundException e){
e.printStackTrace();
return false;
}
}
public static boolean CheckAvailability(String appointmentTime, String id, String appointmentDate) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select appointment_date, appointment_time, staff_id from appointment where appointment_date = '" + appointmentDate + "' && appointment_time = '" + appointmentTime + "' && staff_id = '" + id + "'";
// System.out.println("I have the command!");
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
if(rows.next()){
// System.out.println("UH OH YOU GOT PROBLEM!");
rows.getString(1);
return false;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
// System.out.println("Guess there was nothing!");
return true;
}
public static boolean UpdateAppointment(String id, String id2, String date, String time) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "update appointment set staff_id = '" + id + "' where patient_id = '" + id2 +"' AND appointment_date = '" + date +"' AND appointment_time = '" + time +"'";
@SuppressWarnings("unused")
int update = sqlState.executeUpdate(command);
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
return false;
}
catch(ClassNotFoundException e){
e.printStackTrace();
return false;
}
return true;
}
public static boolean CheckAvailabilityStaff(String string, String staffID, String appointment) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select appointment_date, appointment_time, staff_id from appointment where appointment_date = '" + appointment + "' && appointment_time = '" + string + "' && staff_id = '" + staffID + "'";
// System.out.println("I have the command!");
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
if(rows.next()){
// System.out.println("UH OH YOU GOT PROBLEM!");
rows.getString(1);
return false;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
// System.out.println("Guess there was nothing!");
return true;
}
public static String CheckForStaff(String doctor) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
command = "select staff_id from employee where first_name = '" + doctor + "' OR last_name = '" + doctor + "'";
// System.out.println("I have the command!");
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
if(rows.next()){
// System.out.println("WE GOT A MATCH!!!!");
doctor = rows.getString(1);
return doctor;
}
else{
doctor = null;
return doctor;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
// System.out.println("Guess I found nothing..");
return null;
}
public static boolean CheckAvailabilityPatient(String appointmentTime, String patID, String appointmentDate) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select appointment_date, appointment_time, patient_id from appointment where appointment_date = '" + appointmentDate + "' && appointment_time = '" + appointmentTime + "' && patient_id = '" + patID + "'";
// System.out.println("I have the command!");
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
if(rows.next()){
// System.out.println("UH OH YOU GOT PROBLEM!");
rows.getString(1);
return false;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
// System.out.println("Guess there was nothing!");
return true;
}
public static boolean HasAppointmentsToFile(String idNumber) {
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
sqlState2 = conn.createStatement();
String command = "Select appointment_date, appointment_time, patient_id from appointment where staff_id = '" + idNumber + "'";
rows = sqlState.executeQuery(command);
while(rows.next()){
patientId.add(new Appointment(rows.getString(1), rows.getString(2), rows.getString(3)));
// System.out.println("got patient id data");
}
for(int i = 0; i< patientId.size(); i++){
String command2 = "Select appointment_date, appointment_time from payment_bill where patient_id = '" + patientId.get(i).getPatient_id() + "'";
// System.out.println("inside for loop");
rows2 = sqlState2.executeQuery(command2);
while(rows2.next()){
// System.out.println("inside while loop");
if(patientId.get(i).getAppointmentDate().equals(rows2.getString(1)) && patientId.get(i).getAppointmentTime().equals(rows2.getString(2))){
}
else{
return true;
}
}
}
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return false;
}
public static String CheckForStaffPosition(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select staff_position from employee where staff_id = '" + id +"'";
rows = sqlState.executeQuery(command);
//I return the position of the employer. This position can be a doctor, or receptionist.
if(rows.next()){
return rows.getString(1);
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return "no position";
}
public static boolean HasPendingBill(String id){
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select diagnosis from payment_bill where patient_id = '" + id + "' AND paid = 'N'";
// System.out.println("I have the command!");
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
// System.out.println("Did I find something?!");
if(rows.next()){
return true;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
// System.out.println("Guess there was nothing!");
return false;
}
public static ArrayList<String> getDoctors() {
ArrayList<String> doc = new ArrayList<String>();
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select first_name, last_name, staff_id from employee where staff_position = 'Doctor'";
rows = sqlState.executeQuery(command);
while(rows.next()){
doc.add(rows.getString(3) + " "+ rows.getString(1) + " " +rows.getString(2));
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return doc;
}
public static ArrayList<String> getPatients(String staffId) {
ArrayList<String> pat = new ArrayList<String>();
ArrayList<String> id = new ArrayList<String>();
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
sqlState2 = conn.createStatement();
String command = "Select distinct patient_id from appointment where staff_id = '" + staffId + "'";
rows = sqlState.executeQuery(command);
while(rows.next()){
id.add(rows.getString(1));
}
for(int i =0; i< id.size();i++){
command = "Select first_name, last_name, patient_id from patient where patient_id = '"+ id.get(i) +"'";
rows = sqlState.executeQuery(command);
while(rows.next()){
pat.add(rows.getString(3) + " "+rows.getString(1) + " "+rows.getString(2) + " ");
}
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return pat;
}
public static String getPatientCount(String staffId) {
String count = "";
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select count(staff_id) from appointment where staff_id = '"+staffId+"'";
rows = sqlState.executeQuery(command);
while(rows.next()){
count = rows.getString(1);
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return count;
}
public static String getVisitCount(String patId) {
String count = "";
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select count(patient_id) from appointment where patient_id = '"+patId+"'";
rows = sqlState.executeQuery(command);
while(rows.next()){
count = rows.getString(1);
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return count;
}
public static void TextFileSave(String staffId, String patId) {
String data = "";
String date = "";
String time = "";
String complaint ="";
try{
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
sqlState2 = conn.createStatement();
String command = "Select * from appointment where patient_id = '"+patId+"' AND staff_id = '"+staffId+"'";
rows = sqlState.executeQuery(command);
while(rows.next()){
date = rows.getString(1);
time = rows.getString(2);
complaint = rows.getString(3);
command = "Select diagnosis from payment_bill where appointment_date = '"+date+"' AND appointment_time = '"+time+"' AND patient_id = '"+patId+"'";
rows2 = sqlState2.executeQuery(command);
while(rows2.next()){
data += "Patient ID#: "+ patId+ " Staff ID#: "+ staffId+" Date: "+ date +" Time: "+ time+ " Complaint: " + complaint + " Diagnosis: "+ rows2.getString(1) + "\r\n";
}
}
try{
PrintWriter writer = new PrintWriter("DoctorFile.txt", "UTF-8");
writer.print(data);
writer.close();
}catch(IOException e){
System.out.println("Error!");
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
}
//Added method for PersonExists to find a lost or forgotten id number
public static boolean PersonExists(String fName, String lName, String ssn) {
try {
Class.forName("com.mysql.jdbc.Driver");
conn= DriverManager.getConnection("jdbc:mysql://localhost/healthcare_clinic?autoReconnect=true&useSSL=false","root", "CSC3610" );
sqlState = conn.createStatement();
String command = "Select patient_id from patient where first_name = '" + fName + "'"
+ " AND last_name = '" + lName + "'" + " AND ssn = '" + ssn + "'";
rows = sqlState.executeQuery(command);
//If data was found there will be a row to move the cursor to. Otherwise it will not return a true.
if(rows.next()){
return true;
}
}
catch(SQLException ex){
System.out.println("SQLException : " +ex.getMessage());
System.out.println("VendorError : " +ex.getErrorCode());
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
return false;
}
}