include/dbconnection.jsp ( 데이타베이스명 : web )
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
//Class.forName("com.mysql.cj.jdbc.Driver");
//String url="jdbc:mysql://localhost:3306/web";
//디비 접속
Class.forName("org.mariadb.jdbc.Driver");
String url="jdbc:mariadb://localhost:3306/web"; //데이타베이스명 : web
String user="root"; //관리자 아이디
String password="1111"; //관리자 비밀번호
%>
<!--
// Time Zone 오류가 날시 아래와 같이 변경 처리
String url="jdbc:mysql://localhost:3306/web?serverTimezone=UTC";
// 데이터베이스 입력시 시간이 다르게 입력이 될 때
String url="jdbc:mysql://localhost:3306/web?time_zone='Asia/Seoul'; //아시아,서울 표준시간 설정처리
-->
- 이전글● 데이타베이스 연결 ( jar 파일 ) 23.03.13
- 다음글▣ include/header.jsp ( 수정 ) 23.03.13
댓글목록
등록된 댓글이 없습니다.