%@ page contentType="text/html;charset=euc-kr" %>
<%@ include file="./top.jsp" %>
<%@ include file="/scggracehill/Common/include/incConnection.jsp" %>
<%
PreparedStatement pstmt = null;
ResultSet rset = null;
ResultSet rset2 = null;
try {
String query1 = null;
String query2 = null;
query1 = "select * from qna where type = '1' order by no desc limit 5 offset 0 ";
query2 = "select * from qna where type = '2' order by no desc limit 5 offset 0 ";
pstmt = conn.prepareStatement(query1);
rset = pstmt.executeQuery();
%>
|
<%@ include file="./bottom.jsp" %>
<%
if ( rset != null ) rset.close();
if ( pstmt != null ) pstmt.close();
if ( conn != null ) conn.close();
} catch (Exception e) {
if ( rset != null ) rset.close();
if ( pstmt != null ) pstmt.close();
if ( conn != null ) conn.close();
// ¿¡·¯ÆäÀÌÁö·Î À̵¿............
out.println("JSP >> Exception in scggracehill/index.jsp : " + e.toString());
}
%>