mySQL_jdbcTest.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ page import="java.sql.*" %>
<%
Connection conn=null;
String driver="com.mysql.jdbc.Driver";
//String url="jdbc:mysql://localhost:3306/test";
String url="jdbc:mysql://localhost:3306/test?serverTimezone=UTC";
String user="root";
String password="1111";
Boolean connect=false;
try{
Class.forName(driver);
conn=DriverManager.getConnection(url,user,password);
connect=true;
conn.close();
}catch(Exception e){
connect=false;
e.printStackTrace();
}
%>
<html>
<head>
<title>JDBC 연동 테스트 예제</title>
</head>
<body>
<h3>
<%if(connect==true){ %>
연결되었습니다.
<%}else{ %>
연결에 실패하였습니다.
<%} %>
</h3>
</body>
</html>
- 이전글● mysql 디비 접속 21.07.15
- 다음글● 썸네일 이미지 만들기 21.07.15
댓글목록
등록된 댓글이 없습니다.