<%@page language="java" import="java.util.*, java.sql.*" session="true" contentType="text/html; charset=UTF-8" %>
<%
Connection conn=null;
ResultSet rs=null;
Statement stmt=null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/DB명","계정ID","계정비번");
} catch (SQLException ex) {
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
} finally {
out.println(conn);
}
try {
stmt = conn.createStatement();
if (stmt.execute("SELECT * FROM 테이블명")) {
rs = stmt.getResultSet();
}
while(rs.next()) {
out.println(rs.getString(2));
out.write("<BR>");
}
rs.close();
stmt.close();
conn.close();
} catch(Exception e) {
out.println("rs.next() Error ");
out.println(e.toString());
}
%>
빨간 부분은 각자의 설정에 따름.
'프로그래밍' 카테고리의 다른 글
[보리보드] DB 설계 작업 (0) | 2008.02.21 |
---|---|
[JSP] string 출력시 한글 안깨지게 하기. (1) | 2007.07.16 |
mysql 테이블 생성하기 (0) | 2007.07.16 |
mysql 데이터베이서 생성 & 계정 생성 및 권한 주기 (0) | 2007.07.16 |
자바의 시작 hello java (0) | 2007.06.10 |