웹프로그래밍/jsp

jsp -jdbc select문 이용

zelkova 2011. 3. 23. 17:27

<목차로 돌아가기>

아래의 소스는 제가 연습할때 사용하던 소스입니다.

배우고 게시는 분들이 도움이 되었으면 해서 자료를 올려둠니다
<%@ page contentType="text/html; charset=euc-kr"%>
<%@ page import = "java.sql.*" %>
<%

// 드라이버 로딩
Class.forName("com.mysql.jdbc.Driver");

Connection conn = null;
Statement stmt = null;
ResultSet rs = null;

try{

  int boardpage=0;
  if(getparam!=null) boardpage=Integer.parseInt(getparam);

  String jdbcDriver= "jdbc:mysql://localhost:3306/데이터베이스이름?useUnicode=true&characterEncoding=euckr";
  String dbuser = "계정아이디";
  String dbpass = "계정비번";


  //레코드 총 개수 알아내기
  String query="select * from 테이블명 where 조건";
  
  conn = DriverManager.getConnection(jdbcDriver, dbuser, dbpass);
  stmt = conn.createStatement();
  
  rs = stmt.executeQuery(query);
  rs.first();
  %>
<html>
<head>
 <title></title>
</head>
<body>
<%=rs.getInt("검색된 특정 필드명")%>
<%
}
finally
{
 if (stmt != null) try {stmt.close();} catch(SQLException ex){}
 if (conn != null) try {conn.close();} catch(SQLException ex){}
 if (rs != null) try {rs.close();} catch(SQLException ex){}
}
%>
</body>
</html>

반응형

'웹프로그래밍 > jsp' 카테고리의 다른 글

jsp - 레이아웃 템플릿  (0) 2011.03.25
jsp - jdbc update문 이용하기  (0) 2011.03.23
jsp - jdbc insert문 이용하기  (0) 2011.03.23
jsp - jdbc 연결시키기  (0) 2011.03.22
jsp - 회원가입후 전송 예제 입니다.  (0) 2011.03.22