-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_delete.java
More file actions
237 lines (179 loc) · 6.35 KB
/
app_delete.java
File metadata and controls
237 lines (179 loc) · 6.35 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
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import java.awt.Font;
import javax.swing.JSeparator;
import javax.swing.JComboBox;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.awt.event.ActionEvent;
import java.awt.Color;
public class app_delete {
public JFrame frmAmElectronics;
private JTextField t1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
app_delete window = new app_delete();
window.frmAmElectronics.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public app_delete() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frmAmElectronics = new JFrame();
frmAmElectronics.setTitle("AM ELECTRONICS");
frmAmElectronics.getContentPane().setBackground(new Color(51, 51, 153));
frmAmElectronics.setBounds(100, 100, 1378, 894);
frmAmElectronics.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frmAmElectronics.getContentPane().setLayout(null);
JLabel lblApplianceDeleteDetails = new JLabel("Appliance Delete Details Form");
lblApplianceDeleteDetails.setForeground(new Color(255, 255, 255));
lblApplianceDeleteDetails.setFont(new Font("Cambria", Font.BOLD, 20));
lblApplianceDeleteDetails.setBounds(87, 252, 308, 21);
frmAmElectronics.getContentPane().add(lblApplianceDeleteDetails);
JSeparator separator = new JSeparator();
separator.setBounds(171, 299, 314, 2);
frmAmElectronics.getContentPane().add(separator);
JLabel label_1 = new JLabel("Appliance No");
label_1.setForeground(new Color(255, 255, 255));
label_1.setFont(new Font("Cambria", Font.BOLD, 18));
label_1.setBounds(54, 312, 147, 21);
frmAmElectronics.getContentPane().add(label_1);
JComboBox<String> c1 = new JComboBox<String>();
c1.setBounds(280, 313, 138, 22);
frmAmElectronics.getContentPane().add(c1);
try {
Connection conObject=DriverManager.getConnection("jdbc:ucanaccess://d:/electronics1.accdb");
Statement stmt = conObject.createStatement();
String query = "Select aid from app";
ResultSet rs = stmt.executeQuery(query);
while(rs.next())
{
c1.addItem(rs.getString(1));
}
stmt.close();
conObject.close();
}
catch(Exception e1)
{
JOptionPane.showMessageDialog(null, e1);
}
JButton button = new JButton("Show");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
Connection conObject=DriverManager.getConnection("jdbc:ucanaccess://d:/electronics1.accdb");
String supp=String.valueOf(c1.getSelectedItem());
String query = "select * from app where aid="+Integer.parseInt(supp);
PreparedStatement stmt = conObject.prepareStatement(query);
ResultSet rs = stmt.executeQuery();
while(rs.next())
{
t1.setText(rs.getString(2));
}
stmt.close();
conObject.close();
}
catch(Exception e1)
{
JOptionPane.showMessageDialog(null, e1);
}
}
});
button.setFont(new Font("Cambria", Font.BOLD, 18));
button.setBounds(204, 418, 91, 37);
frmAmElectronics.getContentPane().add(button);
t1 = new JTextField();
t1.setColumns(10);
t1.setBounds(280, 345, 138, 20);
frmAmElectronics.getContentPane().add(t1);
JLabel label = new JLabel("Appliance Name");
label.setForeground(new Color(255, 255, 255));
label.setFont(new Font("Cambria", Font.BOLD, 18));
label.setBounds(54, 349, 157, 29);
frmAmElectronics.getContentPane().add(label);
JSeparator separator_1 = new JSeparator();
separator_1.setBounds(204, 376, 314, 2);
frmAmElectronics.getContentPane().add(separator_1);
JButton btnDelete = new JButton("Delete");
btnDelete.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int resp = JOptionPane.showConfirmDialog(null, "Are you sure you want to delete?");
if(resp == 0)
{
try
{
Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
Connection conObject=DriverManager.getConnection("jdbc:ucanaccess://d:/electronics1.accdb");
String supp=String.valueOf(c1.getSelectedItem());
String query = "delete * from app where aid="+Integer.parseInt(supp);
PreparedStatement stmt = conObject.prepareStatement(query);
int result = stmt.executeUpdate();
if(result == 1)
{
JOptionPane.showMessageDialog(null, "Record deleted successfully!");
t1.setText("");
c1.removeItem(supp);
}
else
JOptionPane.showMessageDialog(null,"Insert Error!");
stmt.close();
conObject.close();
}
catch(Exception e1)
{
JOptionPane.showMessageDialog(null, e1);
}
}
}
});
btnDelete.setFont(new Font("Cambria", Font.BOLD, 18));
btnDelete.setBounds(327, 389, 91, 37);
frmAmElectronics.getContentPane().add(btnDelete);
JButton button_2 = new JButton("Exit");
button_2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int resp = JOptionPane.showConfirmDialog(null, "Are you sure you want to exit?");
if(resp == 0)
{
frmAmElectronics.setVisible(false);
frmAmElectronics.dispose();
MDI1 frame1 = new MDI1();
frame1.frmAmEletronics.setVisible(true);
}
}
});
button_2.setFont(new Font("Cambria", Font.BOLD, 18));
button_2.setBounds(515, 389, 91, 37);
frmAmElectronics.getContentPane().add(button_2);
JLabel lblNewLabel = new JLabel("");
lblNewLabel.setForeground(new Color(51, 153, 255));
lblNewLabel.setBackground(new Color(51, 153, 255));
lblNewLabel.setBounds(0, 0, 1370, 753);
frmAmElectronics.getContentPane().add(lblNewLabel);
}
}