-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchRoom.java
148 lines (123 loc) · 4.72 KB
/
SearchRoom.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
package hotel.management.system;
import java.awt.BorderLayout;
import java.awt.*;
import java.sql.*;
import javax.swing.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
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 SearchRoom extends JFrame {
Connection conn = null;
PreparedStatement pst = null;
ResultSet rs = null;
private JPanel contentPane;
private JTextField txt_Type;
private JTable table;
Choice c1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
SearchRoom frame = new SearchRoom();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public void close()
{
this.dispose();
}
/**
* Create the frame.
* @throws SQLException
*/
public SearchRoom() throws SQLException {
//conn = Javaconnect.getDBConnection();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(530, 200, 700, 500);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JLabel lblSearchForRoom = new JLabel("Search For Room");
lblSearchForRoom.setFont(new Font("Tahoma", Font.PLAIN, 20));
lblSearchForRoom.setBounds(250, 11, 186, 31);
contentPane.add(lblSearchForRoom);
JLabel lblRoomAvailable = new JLabel("Room Bed Type:");
lblRoomAvailable.setBounds(50, 73, 96, 14);
contentPane.add(lblRoomAvailable);
JLabel lblRoomType = new JLabel("Room Number");
lblRoomType.setBounds(23, 162, 96, 14);
contentPane.add(lblRoomType);
JLabel lblRoomAvailable_1 = new JLabel("Availability");
lblRoomAvailable_1.setBounds(175, 162, 120, 14);
contentPane.add(lblRoomAvailable_1);
JLabel lblPrice_1 = new JLabel("Price");
lblPrice_1.setBounds(458, 162, 46, 14);
contentPane.add(lblPrice_1);
JLabel l1 = new JLabel("Bed Type");
l1.setBounds(580, 162, 96, 14);
contentPane.add(l1);
JCheckBox checkRoom = new JCheckBox("Only display Available");
checkRoom.setBounds(400, 69, 205, 23);
checkRoom.setBackground(Color.WHITE);
contentPane.add(checkRoom);
c1 = new Choice();
c1.add("Single Bed");
c1.add("Double Bed");
c1.setBounds(153, 70, 120, 20);
contentPane.add(c1);
JButton btnSearch = new JButton("Search");
btnSearch.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String SQL = "select * from room where bed_type = '"+c1.getSelectedItem()+"'";
String SQL2 = "select * from room where available = 'Available' AND bed_type = '"+c1.getSelectedItem()+"'";
try{
conn c = new conn();
rs = c.s.executeQuery(SQL);
table.setModel(DbUtils.resultSetToTableModel(rs));
if(checkRoom.isSelected())
{
rs = c.s.executeQuery(SQL2);
table.setModel(DbUtils.resultSetToTableModel(rs));
}
}catch (SQLException ss)
{
ss.printStackTrace();
}
}
});
btnSearch.setBounds(200, 400, 120, 30);
btnSearch.setBackground(Color.BLACK);
btnSearch.setForeground(Color.WHITE);
contentPane.add(btnSearch);
JButton btnExit = new JButton("Back");
btnExit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
new Reception().setVisible(true);
setVisible(false);
}
});
btnExit.setBounds(380, 400, 120, 30);
btnExit.setBackground(Color.BLACK);
btnExit.setForeground(Color.WHITE);
contentPane.add(btnExit);
table = new JTable();
table.setBounds(0, 187, 700, 300);
contentPane.add(table);
JLabel lblCleanStatus = new JLabel("Clean Status");
lblCleanStatus.setBounds(306, 162, 96, 14);
contentPane.add(lblCleanStatus);
getContentPane().setBackground(Color.WHITE);
}
}