-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomerInfo.java
141 lines (120 loc) · 3.84 KB
/
CustomerInfo.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hotel.management.system;
import java.awt.BorderLayout;
import java.awt.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import net.proteanit.sql.DbUtils;
import java.sql.*;
import javax.swing.*;
import javax.swing.JTable;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class CustomerInfo extends JFrame {
Connection conn = null;
private JPanel contentPane;
private JLabel lblId;
private JLabel lblNewLabel;
private JLabel lblGender;
private JTable table;
private JLabel lblCountry;
private JLabel lblRoom;
private JLabel lblStatus;
private JLabel lblNewLabel_1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
CustomerInfo frame = new CustomerInfo();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public void close()
{
this.dispose();
}
/**
* Create the frame.
* @throws SQLException
*/
public CustomerInfo() throws SQLException {
//conn = Javaconnect.getDBConnection();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(530, 200, 900, 600);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JButton btnExit = new JButton("Back");
btnExit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
new Reception().setVisible(true);
setVisible(false);
}
});
btnExit.setBounds(450, 510, 120, 30);
btnExit.setBackground(Color.BLACK);
btnExit.setForeground(Color.WHITE);
contentPane.add(btnExit);
JButton btnLoadData = new JButton("Load Data");
btnLoadData.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
try{
conn c = new conn();
String displayCustomersql = "select * from customer";
ResultSet rs = c.s.executeQuery(displayCustomersql);
table.setModel(DbUtils.resultSetToTableModel(rs));
}
catch(Exception e)
{
e.printStackTrace();
}
}
});
btnLoadData.setBounds(300, 510, 120, 30);
btnLoadData.setBackground(Color.BLACK);
btnLoadData.setForeground(Color.WHITE);
contentPane.add(btnLoadData);
lblId = new JLabel("ID");
lblId.setBounds(31, 11, 46, 14);
contentPane.add(lblId);
JLabel l1 = new JLabel("Number");
l1.setBounds(150, 11, 46, 14);
contentPane.add(l1);
lblNewLabel = new JLabel("Name");
lblNewLabel.setBounds(270, 11, 65, 14);
contentPane.add(lblNewLabel);
lblGender = new JLabel("Gender");
lblGender.setBounds(360, 11, 46, 14);
contentPane.add(lblGender);
table = new JTable();
table.setBounds(0, 40, 900, 450);
contentPane.add(table);
lblCountry = new JLabel("Country");
lblCountry.setBounds(480, 11, 46, 14);
contentPane.add(lblCountry);
lblRoom = new JLabel("Room");
lblRoom.setBounds(600, 11, 46, 14);
contentPane.add(lblRoom);
lblStatus = new JLabel("Check-in Status");
lblStatus.setBounds(680, 11, 100, 14);
contentPane.add(lblStatus);
lblNewLabel_1 = new JLabel("Deposit");
lblNewLabel_1.setBounds(800, 11, 100, 14);
contentPane.add(lblNewLabel_1);
getContentPane().setBackground(Color.WHITE);
}
}