#8-2 /☔ 통계 data 관련 project 만들기 - selectOne(ajax),insert
[ 쓰기, 출력, 수정, 삭제 ] 다 만들거임 1. database table 생성 (서울, 경기도, 세종, 대전, 강원도)날짜가 unique key가 되어야함//강우량 tablecreate table rainfall(ridx int(8) not null auto_increment,today date not null default '0001-01-01',area_part1 char(3) not null, //int로 하면 강우량이 0일경우 안들어감area_part2 char(3) not null,area_part3 char(3) not null,area_part4 char(3) not null,area_part5 char(3) not null,primary key(ridx),unique key(today..
2024. 7. 23.
#7-3 / mybatis DB연결 - 포인트 (insert, select ,select one,delete)
1. userpoint table 생성 create table userpoint( uidx int(5) not null auto_increment, uid varchar(100) not null, uname char(100) not null, upoint int(5) not null, udate timestamp not null default current_timestamp(), primary key(uidx) ); 2. DAO 생성 - pointdao.java package api;import lombok.Getter;import lombok.Setter;@Getter@Setterpublic class pointdao { int uidx,upoint; String uid,uname,udate;} 3..
2024. 7. 22.
#7-2 / mybatis(ibatis)를 이용 DAO + config,mapper,xml DB연결
⚡ insert 테스트dbcong.xml 의 하단 bean id="template" 여긴 아직 사용 x - 주석처리 한 뒤 테스트- /META-INf/config.xml //이름 맘대로 - /META-INf/mapper.xml //이름 맘대로 //이름 맘대로 insert into coupon (cidx,cpname,cprate,cpuse,cpdate,indate) values ('0',#{cpname},#{cprate},#{cpuse},#{cpdate},now()) - @Controller @Injectprivate SqlSessionFactory sqlfact;/*@Resource //어디선가 쓸거임 아직 x private SqlSessionTemplate sqlsession;*/@GetMa..
2024. 7. 22.
#5-4 / [ legacy ] 로그인 내가 해봉거
table 만듬 create table member(midx int(7) not null auto_increment,mid varchar(100) not null,mpass varchar(100) not null,mtss enum('SKT','KT','LGT','알뜰폰') not null default 'SKT',mphone char(11) not null,joindate timestamp not null default current_timestamp,primary key(midx),unique id(mid));
2024. 7. 12.