-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomeFrame.java
245 lines (178 loc) · 3.96 KB
/
HomeFrame.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
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
238
239
240
241
242
243
244
245
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import mu.Sound;
public class HomeFrame extends JFrame
{
JPanel jp;
JButton add,modify,delete,view;
public HomeFrame()
{
super("Employee Records Management");
setSize(500,150);
setResizable(false);
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
jp=new JPanel();
jp.setLayout(new FlowLayout(FlowLayout.CENTER,10,25));
add=new JButton("Add");
modify=new JButton("Modify");
delete=new JButton("Delete");
view=new JButton("View");
jp.add(add);
jp.add(modify);
jp.add(delete);
jp.add(view);
add(jp);
setLocationRelativeTo(null);
setVisible(true);
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e)
{
int output=JOptionPane.showConfirmDialog(new JDialog(),"Do you wnat yo exit");
if(output==JOptionPane.YES_OPTION)
System.exit(1);
}
});
add.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
AddFrame a=new AddFrame();
dispose();
}
});
modify.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
ModifyFrame a=new ModifyFrame();
dispose();
}
});
delete.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
DeleteFrame a=new DeleteFrame();
dispose();
}
});
view.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
ViewFrame a=new ViewFrame();
dispose();
}
});
}
public static void main(String args[])
{
HomeFrame h=new HomeFrame();
}
}
class DatabaseHandler
{
static Connection con;
public static void getConnection()
{
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","SYSTEM","shrinath");
}
catch(Exception e)
{
JOptionPane.showMessageDialog(new JDialog()," "+e);
}
}
public void insert(int id,String name)
{
try
{
getConnection();
String q="insert into Employee values(?,?)";
PreparedStatement pst=con.prepareStatement(q);
pst.setInt(1,id);
pst.setString(2,name);
int i=pst.executeUpdate();
Sound.success();
JOptionPane.showMessageDialog(new JDialog(),"1 Record Added");
}
catch(Exception e)
{
Sound.failure();
JOptionPane.showMessageDialog(new JDialog(),"Record Already exists");
}
}
public String query()
{
StringBuffer sb =new StringBuffer();
try
{
getConnection();
String q="select * from Employee order by id";
Statement st=con.createStatement();
ResultSet rs=st.executeQuery(q);
sb.append("ID: "+"\t"+"NAME: "+"\n");
while(rs.next())
{
sb.append(rs.getString(1)+"\t"+rs.getString(2)+"\n");
}
Sound.success();
rs.close();
}
catch(Exception e)
{
JOptionPane.showMessageDialog(new JDialog()," "+e);
}
return sb.toString();
}
public void modify(int id,String name)
{
try
{
getConnection();
String q="update Employee set name=(?) where id=(?)";
PreparedStatement pst=con.prepareStatement(q);
pst.setInt(2,id);
pst.setString(1,name);
int i = pst.executeUpdate();
if(i==0)
{
Sound.failure();
JOptionPane.showMessageDialog(new JDialog()," Record Doesn't exist");
return;
}
else
{
Sound.success();
JOptionPane.showMessageDialog(new JDialog()," Record Updated"+i);
}
}
catch(Exception e)
{
Sound.failure();
JOptionPane.showMessageDialog(new JDialog(),"Record doesn't exist");
}
}
public void delete(int id)
{
try
{
getConnection();
String q="delete from Employee where id=(?)";
PreparedStatement pst=con.prepareStatement(q);
pst.setInt(1,id);
int i =pst.executeUpdate();
Sound.success();
JOptionPane.showMessageDialog(new JDialog(),"1 Record Deleted");
}
catch(Exception e)
{
Sound.failure();
JOptionPane.showMessageDialog(new JDialog(),"Record doesn't exist");
}
}
}