2016. 9. 6. 17:44ㆍ프로그래밍/jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" import="java.sql.*" %> <!-- import를 추가로 넣어준다 -->
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://127.0.0.1:3306/test?useSSL=true";
try{
Class.forName(driver);
Connection conn = DriverManager.getConnection(url,"root","mysql");
if (conn != null){
out.println("연결 성공");
conn.close();
} else out.println("연결 실패");
conn.close();
} catch(Exception e) { System.out.println(e.getMessage());}
%>
</body>
</html>
'프로그래밍 > jsp' 카테고리의 다른 글
html를 이용한 Mysql DB추가 (0) | 2016.09.07 |
---|---|
html에서 부서코드를 입력받아 Mysql 실행 (0) | 2016.09.06 |
피보나치 수열 합산! (0) | 2016.09.01 |
doWhile과 table을 이용해 구구단 출력 (0) | 2016.09.01 |
for문을 사용하여 2의 n승 구하기! (0) | 2016.08.30 |