달력

4

« 2025/4 »

  • 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
2013. 1. 17. 20:59

[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
:
Posted by 피카프