-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourse.java
More file actions
403 lines (364 loc) · 19.8 KB
/
Course.java
File metadata and controls
403 lines (364 loc) · 19.8 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import javax.swing.JOptionPane;
import javax.swing.table.DefaultTableModel;
/*
* 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.
*/
/**
*
* @author jenil
*/
public class Course extends javax.swing.JFrame {
/**
* Creates new form Course
*/
public Course() {
initComponents();
showCourse();
}
public ArrayList<Coursetable> course()
{
ArrayList<Coursetable> courselist = new ArrayList<>();
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection connection = null;
connection = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1533/cse1.omega.uta.edu", "vkp2822", "Mavs2018");
Statement stmt = connection.createStatement();
ResultSet rs = stmt.executeQuery("select * from F18_6_course");
Coursetable course_obj;
while (rs.next()) {
course_obj = new Coursetable(rs.getString("course_id"),rs.getString("program_and_degree_id"),rs.getString("course_name"),rs.getString("professor_name"),rs.getString("professor_highest_designation"),rs.getString("course_type"),rs.getString("university_id"),rs.getDate("exam_date"));
courselist.add(course_obj);
}
}
catch(Exception e){
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
}
return courselist;
}
public void showCourse ()
{
ArrayList<Coursetable> list = course();
DefaultTableModel model = (DefaultTableModel) jTable_Display_Course.getModel();
Object[] row = new Object[8];
for(int i=0;i<list.size();i++){
row[0]=list.get(i).getCourse_id();
row[1]=list.get(i).getProgram_and_degree_id();
row[2]=list.get(i).getCourse_name();
row[3]=list.get(i).getProfessor_name();
row[4]=list.get(i).getProfessor_highest_designation();
row[5]=list.get(i).getCourse_type();
row[6]=list.get(i).getExam_date();
row[7]=list.get(i).getUniversity_id();
model.addRow(row);
}
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
jTable1 = new javax.swing.JTable();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jLabel6 = new javax.swing.JLabel();
jLabel7 = new javax.swing.JLabel();
jLabel8 = new javax.swing.JLabel();
course_id = new javax.swing.JTextField();
program_degrees_id = new javax.swing.JTextField();
course_name = new javax.swing.JTextField();
professor_name = new javax.swing.JTextField();
professor_highest_designation = new javax.swing.JTextField();
course_type = new javax.swing.JTextField();
exam_date = new javax.swing.JTextField();
university_id = new javax.swing.JTextField();
jScrollPane2 = new javax.swing.JScrollPane();
jTable_Display_Course = new javax.swing.JTable();
Save = new javax.swing.JButton();
Update = new javax.swing.JButton();
Reset = new javax.swing.JButton();
jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{null, null, null, null},
{null, null, null, null},
{null, null, null, null},
{null, null, null, null}
},
new String [] {
"Title 1", "Title 2", "Title 3", "Title 4"
}
));
jScrollPane1.setViewportView(jTable1);
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel1.setText("course_id");
jLabel2.setText("program_degrees_id");
jLabel3.setText("course_name");
jLabel4.setText("professor_name");
jLabel5.setText("professor_highest_designation");
jLabel6.setText("course_type");
jLabel7.setText("exam_date");
jLabel8.setText("university_id");
program_degrees_id.setToolTipText("");
course_name.setToolTipText("");
exam_date.setToolTipText("");
exam_date.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
exam_dateActionPerformed(evt);
}
});
jTable_Display_Course.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"course_id", "program_degrees_id", "course_name", "professor_name", "professor_highest_designation", "course_type", "exam_date", "university_id"
}
));
jScrollPane2.setViewportView(jTable_Display_Course);
Save.setText("Save");
Save.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
SaveActionPerformed(evt);
}
});
Update.setText("Update");
Update.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
UpdateActionPerformed(evt);
}
});
Reset.setText("Reset");
Reset.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
ResetActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(128, 128, 128)
.addComponent(Save))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel3)
.addComponent(jLabel8)
.addComponent(jLabel7)
.addComponent(jLabel6)
.addComponent(jLabel4)
.addComponent(jLabel2)
.addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 119, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel1))
.addGap(15, 15, 15)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(university_id, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(professor_highest_designation, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(course_name, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(program_degrees_id, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(course_id, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(professor_name, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(course_type, javax.swing.GroupLayout.PREFERRED_SIZE, 47, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(exam_date, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(Update)
.addGap(140, 140, 140)
.addComponent(Reset))
.addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 452, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(33, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 302, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(layout.createSequentialGroup()
.addGap(22, 22, 22)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(course_id, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(program_degrees_id, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(course_name, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(21, 21, 21)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(professor_name, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel5)
.addComponent(professor_highest_designation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel6)
.addComponent(course_type, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel7)
.addComponent(exam_date, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel8)
.addComponent(university_id, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(Save)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(Update)
.addComponent(Reset)))
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void SaveActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_SaveActionPerformed
// TODO add your handling code here:
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = null;
con = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1533/cse1.omega.uta.edu", "vkp2822", "Mavs2018");
String query = ("insert into F18_6_student(COURSE_ID,PROGRAM_DEGREE_ID,COURSE_NAME,PROFESSOR_NAME,PROFESSOR_HIGHEST_DESIGNATION,COURSE_TYPE,EXAM_DATE,UNIVERSITY_ID) values(?,?,?,?,?,?,?,?)");
PreparedStatement pst = con.prepareStatement(query);
pst.setString(1, course_id.getText());
pst.setString(2, program_degrees_id.getText());
pst.setString(3, course_name.getText());
pst.setString(4, professor_name.getText());
pst.setString(5, professor_highest_designation.getText());
pst.setString(6, course_type.getText());
pst.setString(7, exam_date.getText());
pst.setString(8, university_id.getText());
}
catch(Exception e)
{
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
}
}//GEN-LAST:event_SaveActionPerformed
private void exam_dateActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_exam_dateActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_exam_dateActionPerformed
private void UpdateActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_UpdateActionPerformed
// TODO add your handling code here:
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = null;
con = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1533/cse1.omega.uta.edu", "vkp2822", "Mavs2018");
int row = jTable_Display_Course.getSelectedRow();
String value = (jTable_Display_Course.getModel().getValueAt(row, 0).toString());
String query = "UPDATE F18_6_COURSE SET COURSE_ID=?,PROGRAM_DEGREE_ID=?,COURSE_NAME=?,PROFESSOR_NAME=?,PROFESSOR_HIGHEST_DESIGNATION=?,COURSE_TYPE=?,EXAM_DATE=?,UNIVERSITY_ID=? WHERE COURSE_ID="+value;
PreparedStatement pst = con.prepareStatement(query);
pst.setString(1, course_id.getText());
pst.setString(2, program_degrees_id.getText());
pst.setString(3, course_name.getText());
pst.setString(4, professor_name.getText());
pst.setString(5, professor_highest_designation.getText());
pst.setString(6, course_type.getText());
pst.setString(7, exam_date.getText());
pst.setString(8, university_id.getText());
pst.executeUpdate();
JOptionPane.showMessageDialog(null, "updated Sucessfully!");
}
catch(Exception e)
{
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
}
}//GEN-LAST:event_UpdateActionPerformed
private void ResetActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ResetActionPerformed
// TODO add your handling code here:
course_id.setText("");
program_degrees_id.setText("");
course_name.setText("");
professor_name.setText("");
professor_highest_designation.setText("");
course_type.setText("");
exam_date.setText("");
university_id.setText("");
}//GEN-LAST:event_ResetActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Course.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Course.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Course.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Course.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Course().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton Reset;
private javax.swing.JButton Save;
private javax.swing.JButton Update;
private javax.swing.JTextField course_id;
private javax.swing.JTextField course_name;
private javax.swing.JTextField course_type;
private javax.swing.JTextField exam_date;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel7;
private javax.swing.JLabel jLabel8;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JTable jTable1;
private javax.swing.JTable jTable_Display_Course;
private javax.swing.JTextField professor_highest_designation;
private javax.swing.JTextField professor_name;
private javax.swing.JTextField program_degrees_id;
private javax.swing.JTextField university_id;
// End of variables declaration//GEN-END:variables
}