[MySQL] JSP 에서 MySQL 접속하기 - connector Data/DBMS2013. 1. 17. 20:59
1. connector 필요
http://www.mysql.com/downloads/connector/
2. 환경설정
생성된 web project 의 lib 폴더에 복사.
3. 접속시도
MVC 고 지랄이고 일단은 접어두고 접속부터 해 보자.
<%@page import="java.sql.*"%> <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR"> <title>Insert title here</title> </head> <body> first Exprience <BR><BR> <% String dbURL = "jdbc:mysql://localhost:3306/TCGBOOK"; Class.forName("com.mysql.jdbc.Driver"); Connection conn = DriverManager.getConnection(dbURL, "tcgdev01", "tcgdev01"); Statement stmt = conn.createStatement(); String SQL = "SELECT * FROM MS_USER"; ResultSet rs = stmt.executeQuery(SQL); while (rs.next()){ out.println(rs.getString(1) + "<BR>"); out.println(rs.getString(2) + "<BR>"); } stmt.close(); conn.close(); %> </body> </html> |
실행결과
|
Success..
일단 커넥션 테스트 되었지만 요건 좀 쪽팔리잖어..
코드와 소스의 분리 MVC 로 ㄱㄱ ~
'Data > DBMS' 카테고리의 다른 글
MySQL SP를 만들어보자 (0) | 2013.01.19 |
---|---|
mysql 설치 (0) | 2013.01.15 |