-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPickUp.java
155 lines (121 loc) · 4.53 KB
/
PickUp.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
package hotel.management.system;
import java.awt.BorderLayout;
import java.awt.*;
import java.sql.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import net.proteanit.sql.DbUtils;
import java.awt.Font;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class PickUp extends JFrame {
Connection conn = null;
PreparedStatement pst = null;
ResultSet rs = null;
private JPanel contentPane;
private JTable table;
Choice c1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
PickUp frame = new PickUp();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public void close()
{
this.dispose();
}
/**
* Create the frame.
* @throws SQLException
*/
public PickUp() throws SQLException {
//conn = Javaconnect.getDBConnection();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(530, 200, 800, 600);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JLabel lblPickUpService = new JLabel("Pick Up Service");
lblPickUpService.setFont(new Font("Tahoma", Font.PLAIN, 20));
lblPickUpService.setBounds(90, 11, 158, 25);
contentPane.add(lblPickUpService);
JLabel lblTypeOfCar = new JLabel("Type of Car");
lblTypeOfCar.setBounds(32, 97, 89, 14);
contentPane.add(lblTypeOfCar);
c1 = new Choice();
try{
conn c = new conn();
ResultSet rs = c.s.executeQuery("select * from drivers");
while(rs.next()){
c1.add(rs.getString("brand"));
}
}catch(Exception e){ }
c1.setBounds(123, 94, 150, 25);
contentPane.add(c1);
JLabel lblInfo = new JLabel("Name");
lblInfo.setBounds(24, 208, 46, 14);
contentPane.add(lblInfo);
JButton btnRegister = new JButton("Display");
btnRegister.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
String SQL = "select * from drivers where brand = '"+c1.getSelectedItem()+"'";
try{
conn c = new conn();
rs = c.s.executeQuery(SQL);
table.setModel(DbUtils.resultSetToTableModel(rs));
}catch (SQLException ss)
{
ss.printStackTrace();
}
}
});
btnRegister.setBounds(200, 500, 120, 30);
btnRegister.setBackground(Color.BLACK);
btnRegister.setForeground(Color.WHITE);
contentPane.add(btnRegister);
JButton btnExit = new JButton("Back");
btnExit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
new Reception().setVisible(true);
setVisible(false);
}
});
btnExit.setBounds(420, 500, 120, 30);
btnExit.setBackground(Color.BLACK);
btnExit.setForeground(Color.WHITE);
contentPane.add(btnExit);
table = new JTable();
table.setBounds(0, 233, 800, 250);
contentPane.add(table);
JLabel lblNewLabel = new JLabel("Age");
lblNewLabel.setBounds(165, 208, 46, 14);
contentPane.add(lblNewLabel);
JLabel lblGender = new JLabel("Gender");
lblGender.setBounds(264, 208, 46, 14);
contentPane.add(lblGender);
JLabel lblTypeOfDriver = new JLabel("Company");
lblTypeOfDriver.setBounds(366, 208, 80, 14);
contentPane.add(lblTypeOfDriver);
JLabel lblDateOfThe = new JLabel("Brand");
lblDateOfThe.setBounds(486, 208, 105, 14);
contentPane.add(lblDateOfThe);
JLabel lblAirport = new JLabel("Available");
lblAirport.setBounds(600, 208, 86, 14);
contentPane.add(lblAirport);
JLabel lblAvailable = new JLabel("Location");
lblAvailable.setBounds(700, 208, 73, 14);
contentPane.add(lblAvailable);
getContentPane().setBackground(Color.WHITE);
}
}