-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAirportJDBC.java
735 lines (632 loc) · 27.1 KB
/
AirportJDBC.java
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
import java.sql.*;
import org.javatuples.*;
import java.util.*;
public class AirportJDBC {
private static Connection dbConnection()
{
Connection connection;
try {
String dbURL = "jdbc:mysql://localhost:3306/AIRLINE_RESERVATION?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=GMT";
String jdbcUser = "testingUser";
String jdbcPass = "customPassword";
connection = DriverManager.getConnection(dbURL, jdbcUser, jdbcPass);
} catch (SQLException e) {
System.out.println("DB Connection Failed! Check output console");
e.printStackTrace();
return null;
}
return connection;
}
public static void insertPerson(String firstName, String lastName, int age, String phone, String email)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("INSERT INTO Person\n" +
"VALUES (DEFAULT, '%s', '%s', %d, '%s', '%s');",firstName,lastName,age,phone,email);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static void updatePerson(int id, String firstName, String lastName, int age, String phone, String email)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("UPDATE Person\n" +
"SET pFirst = '%s', pLast = '%s', pAge = %d, phoneNum = '%s', email = '%s'\n" +
"WHERE pID = %d;",firstName,lastName,age,phone,email,id);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static ArrayList<Customer> selectPersons(String firstName, String lastName)
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Customer> persons = new ArrayList<>();
String query = String.format("SELECT *\n" +
"FROM Person\n" +
"WHERE pFirst = '%s' AND pLast = '%s';",firstName,lastName);
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next())
{
String id = Integer.toString(rs.getInt("pID"));
String fname = rs.getString("pFirst");
String lname = rs.getString("pLast");
String age = Integer.toString(rs.getInt("pAge"));
String phoneNum = rs.getString("phoneNum");
String email = rs.getString("email");
persons.add(new Customer(fname,lname,age,id,phoneNum,email));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return persons;
}
public static boolean checkCustomerExists(int id)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkPersonExists(?,?)};");
cs.setInt("personID",id);
cs.registerOutParameter("personExists", Types.BOOLEAN);
cs.execute();
boolean personExists = cs.getBoolean("personExists");
connection.close();
return personExists;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static void insertFlight(int planeID, int departAirportID , int arriveAirportID, String departure, String arrival)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("INSERT INTO Flight\n" +
"VALUES (DEFAULT, %d, %d, %d, '%s', '%s', DEFAULT);",planeID,departAirportID,arriveAirportID,departure,arrival);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static boolean checkFlightExists(int flightID)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkFlightExists(?,?)};");
cs.setInt("fID",flightID);
cs.registerOutParameter("flightExists", Types.BOOLEAN);
cs.execute();
boolean flightExists = cs.getBoolean("flightExists");
connection.close();
return flightExists;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static void updateFlight(int flightID, int planeID, int departAirportID, int arriveAirportID, String departDate, String arriveDate)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("UPDATE Flight\n" +
"SET planeID = %d, departAirportID = %d, arriveAirportID = %d, departDate = '%s', arriveDate = '%s'\n" +
"WHERE flightID = %d;",planeID,departAirportID,arriveAirportID,departDate,arriveDate,flightID);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static void deleteFlight(int flightID)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("DELETE FROM Flight\n" +
"WHERE flightID = %d;",flightID);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static void bookFlight(int fID, int pID, String seatNumber)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("INSERT INTO Passenger\n" +
"VALUES (%d, %d, '%s');",fID,pID,seatNumber);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static void cancelFlight(int flightID, int pID)
{
Connection connection = dbConnection();
if (connection == null)
return;
String query = String.format("DELETE FROM Passenger\n" +
"WHERE flightID = %d AND pID = %d;",flightID, pID);
try {
Statement stmt = connection.createStatement();
stmt.executeUpdate(query);
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
}
}
public static ArrayList<Septet<String,String,String,String,String,String,String>> viewAllFlightsFromDay(String date)
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Septet<String,String,String,String,String,String,String>> flights = new ArrayList<>();
String query = String.format("SELECT\n" +
"\tflightID,\n" +
"\tplaneID,\n" +
" A1.name AS 'From', \n" +
" A2.name AS 'To',\n" +
" departDate,\n" +
" arriveDate,\n" +
" totalPassengers\n" +
"FROM\n" +
"\tFlight, Airport A1, Airport A2\n" +
"WHERE\n" +
"\tFlight.departAirportID = A1.idAirport AND\n" +
" Flight.arriveAirportID = A2.idAirport AND\n" +
" departDate > '%s';",date);
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next())
{
String fID = Integer.toString(rs.getInt("flightID"));
String pID = Integer.toString(rs.getInt("planeID"));
String from = rs.getString("From");
String to = rs.getString("To");
String departDate = rs.getString("departDate");
String arriveDate = rs.getString("arriveDate");
String totalPass = Integer.toString(rs.getInt("totalPassengers"));
flights.add(Septet.with(fID,pID,from,to,departDate,arriveDate,totalPass));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return flights;
}
public static boolean checkPlaneExists(int planeID)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkPlaneExists(?,?)};");
cs.setInt("pID",planeID);
cs.registerOutParameter("planeExists", Types.BOOLEAN);
cs.execute();
boolean planeExists = cs.getBoolean("planeExists");
connection.close();
return planeExists;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static boolean checkAirportExists(int airportID)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkAirportExists(?,?)};");
cs.setInt("aID",airportID);
cs.registerOutParameter("airportExists", Types.BOOLEAN);
cs.execute();
boolean planeExists = cs.getBoolean("airportExists");
connection.close();
return planeExists;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static void archiveFlights(String date)
{
Connection connection = dbConnection();
if (connection == null)
return;
try {
CallableStatement cs = connection.prepareCall("{CALL archiveFlights(?)};");
cs.setDate("cutoff", java.sql.Date.valueOf(date));
cs.execute();
connection.close();
} catch (Exception e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return;
}
}
public static ArrayList<Quartet<String,String,String,String>> viewAirportLocations()
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Quartet<String,String,String,String>> airports = new ArrayList<>();
String query = "SELECT A.idAirport, A.name, loc.city, loc.country\n" +
"FROM Airport A, Locations loc\n" +
"WHERE A.locID = loc.locID;";
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next())
{
String aID = rs.getString("idAirport");
String name = rs.getString("name");
String city = rs.getString("city");
String country = rs.getString("country");
airports.add(Quartet.with(aID,name,city,country));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return airports;
}
public static ArrayList<Septet<String,String,String,String,String,String,String>> viewAllFlightsFromToday()
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Septet<String,String,String,String,String,String,String>> flights = new ArrayList<>();
String query = "SELECT\n" +
"\tflightID,\n" +
" Flight.planeID,\n" +
" A1.name AS 'From',\n" +
" A2.name AS 'To',\n" +
" departDate,\n" +
" arriveDate,\n" +
" M.capacity - totalPassengers AS 'SeatsLeft'\n" +
"FROM Flight, Airport A1, Airport A2, Plane P, PlaneModel M\n" +
"WHERE\n" +
"\tFlight.departAirportID = A1.idAirport AND\n" +
" Flight.arriveAirportID = A2.idAirport AND\n" +
" Flight.planeID = P.planeID AND\n" +
" P.idModel = M.idModel AND\n" +
" departDate >= curdate();";
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next())
{
String fID = Integer.toString(rs.getInt("flightID"));
String pID = Integer.toString(rs.getInt("planeID"));
String from = rs.getString("From");
String to = rs.getString("To");
String departDate = rs.getString("departDate");
String arriveDate = rs.getString("arriveDate");
String seatsLeft = Integer.toString(rs.getInt("SeatsLeft"));
flights.add(Septet.with(fID,pID,from,to,departDate,arriveDate,seatsLeft));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return flights;
}
public static ArrayList<Septet<String,String,String,String,String,String,String>> viewAllFlightFromAirline(String airline) {
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Septet<String, String, String, String, String, String, String>> flights = new ArrayList<>();
String query = String.format("SELECT\n" +
"\tflightID,\n" +
" Flight.planeID,\n" +
" A1.name AS 'From',\n" +
" A2.name AS 'To',\n" +
" departDate,\n" +
" arriveDate,\n" +
" totalPassengers\n" +
"FROM Flight, Airport A1, Airport A2, Plane P, Airline AR\n" +
"WHERE\n" +
"\tFlight.departAirportID = A1.idAirport AND\n" +
" Flight.arriveAirportID = A2.idAirport AND\n" +
"\tFlight.planeID = P.planeID AND\n" +
" P.idAirline = AR.idAirline AND\n" +
" AR.name = '%s';", airline);
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next()) {
String fID = Integer.toString(rs.getInt("flightID"));
String pID = Integer.toString(rs.getInt("planeID"));
String from = rs.getString("From");
String to = rs.getString("To");
String departDate = rs.getString("departDate");
String arriveDate = rs.getString("arriveDate");
String totalPass = Integer.toString(rs.getInt("totalPassengers"));
flights.add(Septet.with(fID, pID, from, to, departDate, arriveDate, totalPass));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return flights;
}
public static ArrayList<String> viewAllAirlines()
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<String> airlines = new ArrayList<>();
String query = "SELECT name FROM Airline;";
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next()) {
String name = rs.getString("name");
airlines.add(name);
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return airlines;
}
public static ArrayList<Septet<String,String,String,String,String,String,String>> viewAllCustomersInFlight(int flightID)
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Septet<String,String,String,String,String,String,String>> customers = new ArrayList<>();
String query = String.format("SELECT *\n" +
"FROM Person P1 JOIN Passenger P2 USING(pID)\n" +
"WHERE pID IN (\n" +
"\tSELECT pID\n" +
" FROM Passenger\n" +
" WHERE flightID = %d\n" +
")\n" +
"ORDER BY seatNumber;", flightID);
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next()) {
String id = rs.getString("pID");
String first = rs.getString("pFirst");
String last = rs.getString("pLast");
String age = Integer.toString(rs.getInt("pAge"));
String phoneNum = rs.getString("phoneNum");
String email = rs.getString("email");
String seatNumber = rs.getString("seatNumber");
customers.add(Septet.with(id,first,last,age,phoneNum,email,seatNumber));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return customers;
}
public static boolean checkIfSeatTaken(int flightID, String seatNumber)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkIfSeatIsTaken(?,?,?)};");
cs.setInt("fID",flightID);
cs.setString("seatNo",seatNumber);
cs.registerOutParameter("seatTaken", Types.BOOLEAN);
cs.execute();
boolean seatTaken = cs.getBoolean("seatTaken");
connection.close();
return seatTaken;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static boolean checkIfFlightIsFull(int flightID)
{
Connection connection = dbConnection();
if (connection == null)
return false;
try {
CallableStatement cs = connection.prepareCall("{CALL checkIfFlightFull(?,?)};");
cs.setInt("fID",flightID);
cs.registerOutParameter("isFull", Types.BOOLEAN);
cs.execute();
boolean flightIsFull = cs.getBoolean("isFull");
connection.close();
return flightIsFull;
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return false;
}
}
public static ArrayList<Quartet<String,String,String,String>> viewAllPlanes()
{
Connection connection = dbConnection();
if (connection == null)
return null;
ArrayList<Quartet<String,String,String,String>> airlines = new ArrayList<>();
String query = "SELECT planeID, PlaneModel.name AS Model, Airline.name AS Airline, capacity\n" +
"FROM Plane JOIN Airline USING(idAirline) JOIN PlaneModel USING(idModel)\n" +
"ORDER BY planeID;";
try {
Statement stmt = connection.createStatement();
stmt.execute(query);
ResultSet rs = stmt.getResultSet();
while (rs.next()) {
String planeID = Integer.toString(rs.getInt("planeID"));
String model = rs.getString("Model");
String airline = rs.getString("Airline");
String capacity = Integer.toString(rs.getInt("capacity"));
airlines.add(Quartet.with(planeID,model,airline,capacity));
}
connection.close();
} catch (SQLException e) {
System.out.println("Query Failed! Check output console");
e.printStackTrace();
return null;
}
return airlines;
}
public static void main(String[] args)
{
/*String date = "2000-01-01";
System.out.println("Here are the flights starting from " + date);
ArrayList<Septet<String,String,String,String,String,String,String>> flights = viewAllFlightsFromDay(date);
for(Septet<String,String,String,String,String,String,String> flight : flights)
{
String fID = flight.getValue0();
String pID = flight.getValue1();
String from = flight.getValue2();
String to = flight.getValue3();
String depart = flight.getValue4();
String arrive = flight.getValue5();
String totalPass =flight.getValue6();
String row = String.format("fID: %s, pID: %s, From: %s, To: %s, Depart: %s, Arrive: %s, Total Passengers: %s",fID,pID,from,to,depart,arrive,totalPass);
System.out.println(row);
}*/
/*System.out.println("Here are all the airports and their locations!");
ArrayList<Quartet<String,String,String,String>> airports = viewAirportLocations();
for(Quartet<String,String,String,String> airport : airports)
{
String id = airport.getValue0();
String name = airport.getValue1();
String city = airport.getValue2();
String country = airport.getValue3();
String row = String.format("ID: %s, name: %s, city: %s, country: %s",id,name,city,country);
System.out.println(row);
}*/
/*System.out.println("Here are the flights starting from today");
ArrayList<Septet<String,String,String,String,String,String,String>> flights = viewAllFlightsFromToday();
for(Septet<String,String,String,String,String,String,String> flight : flights)
{
String fID = flight.getValue0();
String pID = flight.getValue1();
String from = flight.getValue2();
String to = flight.getValue3();
String depart = flight.getValue4();
String arrive = flight.getValue5();
String seatsLeft =flight.getValue6();
String row = String.format("fID: %s, pID: %s, From: %s, To: %s, Depart: %s, Arrive: %s, Seats Left: %s",fID,pID,from,to,depart,arrive,seatsLeft);
System.out.println(row);
}*/
/*String airline = "Frontier";
System.out.println("Here are the flights from " + airline + " airlines:");
ArrayList<Septet<String,String,String,String,String,String,String>> flights = viewAllFlightFromAirline(airline);
for(Septet<String,String,String,String,String,String,String> flight : flights)
{
String fID = flight.getValue0();
String pID = flight.getValue1();
String from = flight.getValue2();
String to = flight.getValue3();
String depart = flight.getValue4();
String arrive = flight.getValue5();
String totalPass =flight.getValue6();
String row = String.format("fID: %s, pID: %s, From: %s, To: %s, Depart: %s, Arrive: %s, Total Passengers: %s",fID,pID,from,to,depart,arrive,totalPass);
System.out.println(row);
}*/
/*
System.out.println("Here are all the airlines:");
ArrayList<String> airlines = viewAllAirlines();
for (String name : airlines)
System.out.println(name);*/
/*ookFlight(1033,1049, "A1");
int flightID = 1033;
System.out.println("Here is everyone from flight: " + flightID);
ArrayList<Septet<String,String,String,String,String,String,String>> people = viewAllCustomersInFlight(flightID);
for(Septet<String,String,String,String,String,String,String> person : people)
{
String pID = person.getValue0();
String first = person.getValue1();
String last = person.getValue2();
String age = person.getValue3();
String phone = person.getValue4();
String email = person.getValue5();
String seatNumber = person.getValue6();
String row = String.format("ID: %s, First: %s, Last: %s, Age: %s, Phone: %s, Email: %s, SeatNumber: %s",pID,first,last,age,phone,email,seatNumber);
System.out.println(row);
}*/
//System.out.println(checkIfSeatTaken(1033,"A2"));
//System.out.println(checkIfFlightIsFull(1033));
ArrayList<Quartet<String,String,String,String>> planes = viewAllPlanes();
for(Quartet<String,String,String,String> person : planes)
{
String planeID = person.getValue0();
String model = person.getValue1();
String airline = person.getValue2();
String capacity = person.getValue3();
String row = String.format("Plane: %s, Model: %s, Airline: %s, Capacity: %s",planeID,model,airline,capacity);
System.out.println(row);
}
}
}