-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflight.java
More file actions
428 lines (424 loc) · 10.9 KB
/
Copy pathflight.java
File metadata and controls
428 lines (424 loc) · 10.9 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
import java.sql.*;
import java.awt.*;
import java.awt.event.*;
class flight extends Frame
{
Connection cn;
Statement st;
ResultSet rs;
String flag,code;
TextField txt1,txt2,txt3;
TextArea txta;
Button bt1,bt2,bt3,bt4,bt5,bt6;
Label lb1,lb2,lb3,lb5,sp1,sp2,sp3,sp4;
GridBagLayout gl;
GridBagConstraints gbc;
flight()
{
setTitle("Flight Master");
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
dispose();
}
});
try
{
Class.forName("com.mysql.jdbc.Driver");
cn=DriverManager.getConnection("jdbc:mysql://localhost:3306/airline","root","6223222");
st=cn.createStatement();
}
catch(Exception e)
{
System.out.println(e);
}
gl=new GridBagLayout();
gbc=new GridBagConstraints();
setLayout(gl);
lb1=new Label("Enter Flight Code ");
txt1=new TextField(3);
lb2=new Label("Enter Flight Route ");
txt2=new TextField(30);
lb3=new Label("Enter Flight Fare ");
txt3=new TextField(10);
lb5=new Label("Message");
txta=new TextArea(2,30);
sp1=new Label(" ");
sp2=new Label(" ");
sp3=new Label(" ");
sp4=new Label(" ");
bt1=new Button("Add");
bt2=new Button("Modify");
bt3=new Button("Delete");
bt4=new Button("Save");
bt5=new Button("Cancel");
bt6=new Button("Close");
gbc.anchor=GridBagConstraints.NORTHWEST;
gbc.gridx=0;
gbc.gridy=0;
gl.setConstraints(lb1,gbc);
add(lb1,gbc);
gbc.gridx=1;
gbc.gridy=0;
gl.setConstraints(txt1,gbc);
add(txt1,gbc);
gbc.gridx=0;
gbc.gridy=1;
gl.setConstraints(lb2,gbc);
add(lb2,gbc);
gbc.gridx=1;
gbc.gridy=1;
gl.setConstraints(txt2,gbc);
add(txt2,gbc);
gbc.gridx=0;
gbc.gridy=2;
gl.setConstraints(lb3,gbc);
add(lb3,gbc);
gbc.gridx=1;
gbc.gridy=2;
gl.setConstraints(txt3,gbc);
add(txt3,gbc);
gbc.gridx=0;
gbc.gridy=3;
gl.setConstraints(sp1,gbc);
add(sp1,gbc);
gbc.gridx=1;
gbc.gridy=3;
gl.setConstraints(sp2,gbc);
add(sp2,gbc);
gbc.gridx=0;
gbc.gridy=4;
gl.setConstraints(bt1,gbc);
add(bt1,gbc);
gbc.gridx=1;
gbc.gridy=4;
gl.setConstraints(bt2,gbc);
add(bt2,gbc);
gbc.gridx=0;
gbc.gridy=5;
gl.setConstraints(bt3,gbc);
add(bt3,gbc);
gbc.gridx=1;
gbc.gridy=5;
gl.setConstraints(bt4,gbc);
add(bt4,gbc);
gbc.gridx=0;
gbc.gridy=6;
gl.setConstraints(bt5,gbc);
add(bt5,gbc);
gbc.gridx=1;
gbc.gridy=6;
gl.setConstraints(bt6,gbc);
add(bt6,gbc);
gbc.gridx=0;
gbc.gridy=7;
gl.setConstraints(sp3,gbc);
add(sp3,gbc);
gbc.gridx=1;
gbc.gridy=7;
gl.setConstraints(sp4,gbc);
add(sp4,gbc);
gbc.gridx=0;
gbc.gridy=8;
gl.setConstraints(lb5,gbc);
add(lb5,gbc);
gbc.gridx=1;
gbc.gridy=8;
gl.setConstraints(txta,gbc);
add(txta,gbc);
txta.setEditable(false);
bt1.addActionListener(new BT1());
bt2.addActionListener(new BT2());
bt3.addActionListener(new BT3());
bt4.addActionListener(new BT4());
bt5.addActionListener(new BT5());
bt6.addActionListener(new BT6());
setSize(400,300);
setVisible(true);
}
class BT1 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
flag="add";
try
{
st.executeUpdate("insert into flight values('"+txt1.getText()+"','"+txt2.getText()+"','"+txt3.getText()+"')");
}
catch(Exception e1)
{
System.out.println("in insert");
}
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
}
}
class BT2 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
flag="mod";
String str=txt1.getText();
str=str.trim();
if(str.length()<1 || str.length()>3)
{
txta.setText("First Enter Flight Code And Must Be Length Of 1 To 3 Character.");
txt1.requestFocus();
return;
}
try
{
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
if(rs.next()==false)
{
txta.setText("Flight Code Not Found.");
txt1.requestFocus();
}
rs=st.executeQuery("Select * from ticket where fcode='" + txt1.getText() + "'");
if(rs.next()==true)
{
txta.setText("Flight Code Is In Use.");
txt1.requestFocus();
return;
}
else
{
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
rs.next();
txt1.setText(rs.getString(1));
txt2.setText(rs.getString(2));
txt3.setText(Double.toString(rs.getDouble(3)));
txta.setText("");
txt1.requestFocus();
code=txt1.getText();
}
}
catch(Exception e1)
{
}
}
}
class BT3 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
flag="del";
String str=txt1.getText();
str=str.trim();
if(str.length()<1 || str.length()>3)
{
txta.setText("First Enter Flight Code And Must Be Length Of 1 To 3 Character.");
txt1.requestFocus();
return;
}
try
{
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
if(rs.next()==false)
{
txta.setText("Flight Code Not Found.");
txt1.requestFocus();
}
rs=st.executeQuery("Select * from ticket where fcode='" + txt1.getText() + "'");
if(rs.next()==true)
{
txta.setText("Flight Code Is In Use.");
txt1.requestFocus();
return;
}
else
{
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
rs.next();
txt1.setText(rs.getString(1));
txt2.setText(rs.getString(2));
txt3.setText(Double.toString(rs.getDouble(3)));
txta.setText("");
txt1.requestFocus();
code=txt1.getText();
}
}
catch(Exception e1)
{
}
}
}
class BT4 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String str=txt1.getText();
str=str.trim();
if(str.length()<1 || str.length()>3)
{
txta.setText("Flight Code Must Be Length Of 1 To 3 Character.");
txt1.requestFocus();
return;
}
str=txt2.getText();
str=str.trim();
if(str.length()<1 || str.length()>30)
{
txta.setText("Flight Route Must Be Length Of 1 To 30 Character.");
txt2.requestFocus();
return;
}
str=txt3.getText();
str=str.trim();
if(str.length()<1 || str.length()>10)
{
txta.setText("Flight Fare Must Be Length Of 1 To 30 Character.");
txt3.requestFocus();
return;
}
try
{
if(Double.parseDouble(str)<1)
{
txta.setText("Flight Fare Must Be Numeric And > 1.");
txt3.requestFocus();
return;
}
}
catch(Exception e2)
{
txta.setText("Flight Fare Must Be Numeric And > 1.");
txt3.requestFocus();
return;
}
if(flag=="add")
{
try
{
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
if(rs.next()==true)
{
txta.setText("Flight Code Allready Exists.");
txt1.requestFocus();
return;
}
else
{
st.executeUpdate("insert into flight values('" + txt1.getText() + "','" + txt2.getText() + "'," + Double.parseDouble(txt3.getText()) + ")");
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
}
}
catch(Exception e1)
{
}
}
else if(flag=="mod")
{
try
{
rs=st.executeQuery("Select * from ticket where fcode='" + code + "'");
if(rs.next()==true)
{
txta.setText("Flight Code Is In Use.");
txt1.requestFocus();
return;
}
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
if(rs.next()==true)
{
if(code.compareToIgnoreCase(rs.getString(1))!=0)
{
txta.setText("Flight Code Allready Exists.");
txt1.requestFocus();
return;
}
else
{
st.executeUpdate("delete * from flight where code='" + code + "'");
st.executeUpdate("insert into flight values('" + txt1.getText() + "','" + txt2.getText() + "'," + Double.parseDouble(txt3.getText()) + ")");
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
code="";
}
}
else
{
st.executeUpdate("delete * from flight where code='" + code + "'");
st.executeUpdate("insert into flight values('" + txt1.getText() + "','" + txt2.getText() + "'," + Double.parseDouble(txt3.getText()) + ")");
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
code="";
}
}
catch(Exception e1)
{
}
}
else if(flag=="del")
{
try
{
rs=st.executeQuery("Select * from ticket where fcode='" + code + "'");
if(rs.next()==true)
{
txta.setText("Flight Code Is In Use.");
txt1.requestFocus();
return;
}
rs=st.executeQuery("Select * from flight where code='" + txt1.getText() + "'");
if(rs.next()==false)
{
txta.setText("Flight Code Not Found.");
txt1.requestFocus();
return;
}
else
{
st.executeUpdate("delete * from flight where code='" + code + "'");
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
}
}
catch(Exception e1)
{
}
}
}
}
class BT5 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
flag="";
txt1.setText("");
txt2.setText("");
txt3.setText("");
txta.setText("");
txt1.requestFocus();
code="";
}
}
class BT6 implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
dispose();
}
}
public static void main(String args[])
{
new flight();
}
}