-
Notifications
You must be signed in to change notification settings - Fork 1
/
Search_optionResult.jsp
331 lines (294 loc) · 8.97 KB
/
Search_optionResult.jsp
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
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ page language = "java" import ="java.text.*, java.sql.*, java.util.ArrayList, java.util.Collections"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>KNU MOVIE_TEAM3</title>
</head>
<body style="margin-left:250px;margin-right:250px">
<%
String[] type = request.getParameterValues("type");
String[] genre = request.getParameterValues("genre");
String[] ver = request.getParameterValues("ver");
String serverIP = "localhost";
String strSID = "orcl";
String portNum = "1521";
String user = "university";
String pass = "comp322";
String url = "jdbc:oracle:thin:@"+serverIP+":"+portNum+":"+strSID;
String sql= "";
ArrayList<Integer> titlelist = new ArrayList<Integer>();
Connection conn = null;
Statement stmt;
ResultSet rs;
Class.forName("oracle.jdbc.driver.OracleDriver");
conn=DriverManager.getConnection(url,user,pass);
// out.println("디비 연결 성공");
try {
if (type!=null)
{
for (int i = 0;i < type.length;i++)
{
conn.setAutoCommit(false);
stmt = conn.createStatement();
if (type[i].equals("m")==true)
{
sql = "select * from movie where type ='m'";
rs = stmt.executeQuery(sql);
while(rs.next())
{
titlelist.add(rs.getInt("title_id"));
}
}
else if (type[i].equals("s")==true)
{
sql = "select title_id from movie where type ='s'";
rs = stmt.executeQuery(sql);
while(rs.next())
titlelist.add(rs.getInt("title_id"));
}
else if (type[i].equals("o")==true)
{
sql = "select title_id from movie where type ='o'";
rs = stmt.executeQuery(sql);
while(rs.next())
titlelist.add(rs.getInt("title_id"));
}
}
}
if (genre!=null)
{
for (int i = 0;i< genre.length;i++)
{
conn.setAutoCommit(false);
stmt = conn.createStatement();
if (genre[i].equals("1")==true)
{
sql = "select * from movie, has_genre where title_id = M_id AND Gnum=1";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("2")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=2";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("3")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=3";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("4")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=4";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("5")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=5";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("6")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=6";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("7")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=7";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("8")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=8";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("9")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=9";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (genre[i].equals("10")==true)
{
sql = "select title_id from movie, has_genre where title_id = M_id AND Gnum=10";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
}
}
//version 추가하기
if (ver!=null)
{
for (int i = 0;i<ver.length;i++)
{
conn.setAutoCommit(false);
stmt = conn.createStatement();
if (ver[i].equals("1")==true)
{
sql = "select * from movie, has_version where title_id = Acs_id AND V_id=1";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (ver[i].equals("2")==true)
{
sql = "select * from movie, has_version where title_id = Acs_id AND V_id=2";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (ver[i].equals("3")==true)
{
sql = "select title_id from movie, has_version where title_id = Acs_id AND V_id =3";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (ver[i].equals("4")==true)
{
sql = "select title_id from movie, has_version where title_id = Acs_id AND V_id =4";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (ver[i].equals("5")==true)
{
sql = "select title_id from movie, has_version where title_id = Acs_id AND V_id =5";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
else if (ver[i].equals("6")==true)
{
sql = "select title_id from movie, has_version where title_id = Acs_id AND V_id =6";
rs = stmt.executeQuery(sql);
while (rs.next())
{
if (titlelist.contains(rs.getInt("title_id"))==true)
break;
titlelist.add(rs.getInt("title_id"));
}
}
}
}
if (titlelist.isEmpty()==true)//아무것도 체크 안했으면
{
%>
<script>
alter('옵션을 선택해주세요.')
location.href="OptionSearch.jsp"
</script>
<%
}
else { // titlelist에 있는 애들 select문 돌려서 결과 띄워주기
%>
<div style="font-size:30px;text-align: center;">
<h1>검색 결과</h1>
</div>
<form action = "showdetail.jsp" method = "POST">
<%
Collections.sort(titlelist);
for(int i=0; i<titlelist.size();i++)
{
conn.setAutoCommit(false);
stmt = conn.createStatement();
sql = "select title_id, title from movie where title_id = " + titlelist.get(i);
rs = stmt.executeQuery(sql);
while (rs.next())
{
out.println("<br><input type=\"radio\" name = \"title_id\" value = \"" +Integer.toString(rs.getInt("title_id")) + "\">" + rs.getString("title_id") +" "+ rs.getString("title") + "</input>");
}
}
}
} catch(SQLException ex)
{
System.exit(1);
}
%>
<div style="margin-top:20px; text-align: center;">
<input type="submit" value="상세정보" style="width: 110px; height: 35px; font-size: 15px; text-align:center;"onclick="location.href='showdetail.jsp'"/>
<input type="button" value="취소" style="width: 110px; height: 35px; font-size: 15px; text-align:center;"onclick="location.href='OptionSearch.jsp'"></input>
</div>
</form>
</body>
</html>