-
Notifications
You must be signed in to change notification settings - Fork 0
/
CsatQuestionsDisplay.java
358 lines (214 loc) · 7.81 KB
/
CsatQuestionsDisplay.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
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
package csatdisplay;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.*;
import javax.servlet.RequestDispatcher;
import javax.servlet.http.HttpSession;
public class CsatQuestionsDisplay {
public ArrayList<CsatQuest> displayQ( String role) throws Exception{
boolean accessstatus =false;
Connection connection = null;
ResultSet userdetailsresults=null;
String query = "select * from CsatQuestions cq where role='"+role+"'ORDER BY cq.QuestionType DESC";
ArrayList<CsatQuest> questions= new ArrayList<CsatQuest>();
try{
connection = DaoUtil.getMySqlDBConnection();
PreparedStatement pstm1 =connection.prepareStatement(query);
ResultSet rs= pstm1.executeQuery();
int cmt=1;
int i=0;
while(rs.next()){
CsatQuest ob= new CsatQuest();
String quest=rs.getString("Questions");
String qno=rs.getString("QNo");
String qType=rs.getString("QuestionType");
char qT=qType.charAt(0);
ob.setQuestions(quest);
ob.setQuestionNo(qno);
ob.setQuestionType(qT);
questions.add(ob);
}
/*connection.close();*/
}
catch (SQLException ex)
{
System.out.println(ex);
}
return questions;
}
public void addQuestions(String q, String quest, String qType, String role)throws Exception
{
Connection connection = null;
try{
PreparedStatement pstm = null;
String sql1;
connection = DaoUtil.getMySqlDBConnection();
sql1 =
"INSERT INTO CsatQuestions VALUES(?,?,?,?)";
pstm = (PreparedStatement) connection.prepareStatement(sql1);
pstm.setString(1,q);
pstm.setString(2,quest);
pstm.setString(3,qType);
pstm.setString(4,role);
int status = pstm.executeUpdate();
}
catch (Exception ex)
{
System.out.println(ex);
}
}
public ArrayList<String> getQuestions(String role)throws Exception
{
ArrayList<String> qList= new ArrayList();
try
{
Connection con1 = DaoUtil.getMySqlDBConnection();
PreparedStatement pstm = null;
PreparedStatement pstm1= null;
PreparedStatement pstm2,pstm3,pstm4=null;
String sql,sql1, sql2,sql3,sql4;
sql="select * from CsatQuestions cq where role='"+role+"'ORDER BY cq.QNo ASC, cq.QuestionType DESC";
pstm = (PreparedStatement) con1.prepareStatement(sql);
ResultSet rs= pstm.executeQuery();
while(rs.next())
{
qList.add(rs.getString(1));
}
}
catch (SQLException ex)
{
System.out.println(ex);
}
return qList;
}
public void insertInDB(String p, String s,String c, String qno, int rating ,String cmt,String role)throws Exception
{
try
{
Connection con1 = DaoUtil.getMySqlDBConnection();
PreparedStatement pstm = null;
PreparedStatement pstm1= null;
PreparedStatement pstm2,pstm3,pstm4=null;
String sql,sql1, sql2,sql3,sql4;
sql1="INSERT INTO CSAT4 VALUES('"+p+"','"+s+"','"+c+"','"+qno+"','"+rating+"','"+cmt+"','"+role+"')";
pstm1 = (PreparedStatement) con1.prepareStatement(sql1);
pstm1.executeUpdate(sql1);
}
catch (SQLException ex)
{
System.out.println(ex);
}
}
public ArrayList<CsatQuest> getFromDB(String PName, String role) throws Exception
{
ArrayList<CsatQuest> displayList =new ArrayList<CsatQuest>();
try
{
Connection con = DaoUtil.getMySqlDBConnection();
PreparedStatement pstm,pstm1 = null;
String sql; String sql1;
/*
sql1="select * from CsatQuestions ORDER BY role,QuestionType";
pstm1 = (PreparedStatement) con.prepareStatement(sql1);
pstm1.executeQuery();*/
sql="select c.ProjectName, c.SonataProjectManager, c.CustomerManager,c.Rating,c.Comment, cq.Questions, cq.QuestionType,cq.role from CSAT4 c, CsatQuestions cq where c.ProjectName='"+PName+"'and c.role='"+role+"' and c.QNo=cq.QNo and c.role=cq.role ORDER BY c.SonataProjectManager,cq.role ASC,cq.QuestionType DESC ";
pstm = (PreparedStatement) con.prepareStatement(sql);
ResultSet rs=pstm.executeQuery();
// CsatObjects ob= new CsatObjects();
if (!rs.isBeforeFirst() )
{
return displayList;
// response.sendRedirect("http://localhost:8081/Test/invalid.jsp");
}
while(rs.next())
{
CsatQuest ob= new CsatQuest();
ob.setProjectName(rs.getString("ProjectName"));
ob.setProjectManager(rs.getString("SonataProjectManager"));
ob.setCustomerManager(rs.getString("CustomerManager"));
String cmt=rs.getString("Comment");
int r=rs.getInt("Rating");
String quest=rs.getString("Questions");
String q=rs.getString("QuestionType");
char qType=q.charAt(0);
ob.setRating(r);
ob.setComment(cmt);
ob.setQuestions(quest);
ob.setQuestionType(qType);
ob.setRole(rs.getString("role"));
/* ratings[i]=r;
comments[i]=cmt;*/
displayList.add(ob);
}
}
catch (SQLException ex)
{
System.out.println(ex);
}
return displayList;
}
public ArrayList<CsatQuest> getAllFromDB(String PName, String role)throws Exception
{
ArrayList<CsatQuest> displayListAll =new ArrayList<CsatQuest>();
String []roles= new String[3];
roles[0]="r1"; roles[1]="r2"; //roles[3]="r3";
int i=0;
CsatQuestionsDisplay ob= new CsatQuestionsDisplay();
while(i<2)
{
displayListAll.addAll(ob.getFromDB(PName,roles[i]));
i++;
}
return displayListAll;
}
public ArrayList<CsatQuest> getByManager(String MName) throws Exception
{
ArrayList<CsatQuest> displayList =new ArrayList<CsatQuest>();
try
{
Connection con = DaoUtil.getMySqlDBConnection();
PreparedStatement pstm,pstm1 = null;
String sql; String sql1;
/*
sql1="select * from CsatQuestions ORDER BY role,QuestionType";
pstm1 = (PreparedStatement) con.prepareStatement(sql1);
pstm1.executeQuery();*/
sql="select c.ProjectName, c.SonataProjectManager, c.CustomerManager,c.Rating,c.Comment, cq.Questions, cq.QuestionType,cq.role from CSAT4 c, CsatQuestions cq where c.SonataProjectManager='"+MName+"' and c.QNo=cq.QNo and c.role=cq.role ORDER BY c.ProjectName,cq.role ASC,cq.QuestionType DESC";
pstm = (PreparedStatement) con.prepareStatement(sql);
ResultSet rs=pstm.executeQuery();
// CsatObjects ob= new CsatObjects();
if (!rs.isBeforeFirst() )
{
return displayList;
// response.sendRedirect("http://localhost:8081/Test/invalid.jsp");
}
while(rs.next())
{
CsatQuest ob= new CsatQuest();
ob.setProjectName(rs.getString("ProjectName"));
ob.setProjectManager(rs.getString("SonataProjectManager"));
ob.setCustomerManager(rs.getString("CustomerManager"));
String cmt=rs.getString("Comment");
int r=rs.getInt("Rating");
String quest=rs.getString("Questions");
String q=rs.getString("QuestionType");
char qType=q.charAt(0);
ob.setRating(r);
ob.setComment(cmt);
ob.setQuestions(quest);
ob.setQuestionType(qType);
ob.setRole(rs.getString("role"));
/* ratings[i]=r;
comments[i]=cmt;*/
displayList.add(ob);
}
}
catch (SQLException ex)
{
System.out.println(ex);
}
return displayList;
}
}