setAutocommit
-
이클립스 DBCP연결방법 (간단)카테고리 없음 2018. 6. 21. 08:23
정말 간단함1. DB에 테이블을 작성한다.(나는 mariaDB를 사용했음 이건 각자하기) 작성자, 비밀번호, 내용, 작성일, 아이피 create table memo( idx int(4) primary key auto_increment, name varchar(100) not null, password varchar(100) not null, content text not null, regdate timestamp default now(), ip varchar(20) not null); 2. DBCP를 설정한다. 1)META- INF 안에 context.xml을 만들자- META-INF폴더 오른쪽누르면 OTHER가 있다 클릭하면 XML생성가능함이 내용을 쫘르르 붙여 쓴다 // 간단설명을 붙이자면auth:컨..