-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDepartment.java
97 lines (83 loc) · 2.44 KB
/
Department.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
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import net.proteanit.sql.DbUtils;
import javax.swing.JTable;
import java.sql.*;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Department extends JFrame {
Connection conn = null;
private JPanel contentPane;
private JTable table;
private JLabel lblNewLabel;
private JLabel lblNewLabel_1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Department frame = new Department();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public void close()
{
this.dispose();
}
/**
* Create the frame.
* @throws SQLException
*/
public Department() throws SQLException {
conn = Javaconnect.getDBConnection();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 502, 341);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
table = new JTable();
table.setBounds(23, 36, 442, 221);
contentPane.add(table);
JButton btnNewButton = new JButton("Load Data");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try{
String displayCustomersql = "select d_name, d_budget from Department";
PreparedStatement pst = conn.prepareStatement(displayCustomersql);
ResultSet rs = pst.executeQuery();
table.setModel(DbUtils.resultSetToTableModel(rs));
}
catch (Exception e1){
e1.printStackTrace();
}
}
});
btnNewButton.setBounds(288, 268, 89, 23);
contentPane.add(btnNewButton);
JButton btnNewButton_1 = new JButton("Exit");
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
close();
}
});
btnNewButton_1.setBounds(387, 268, 89, 23);
contentPane.add(btnNewButton_1);
lblNewLabel = new JLabel("Department");
lblNewLabel.setBounds(45, 11, 105, 14);
contentPane.add(lblNewLabel);
lblNewLabel_1 = new JLabel("Budget");
lblNewLabel_1.setBounds(331, 11, 75, 14);
contentPane.add(lblNewLabel_1);
}
}