본문 바로가기

MEMO/Mysql-memo4

IDE - database source Explorer install help - about Spring tool suite 으로 eclipse 버전 확인 후 메모장에 적어놓기.. 나는 현재 Platform: Eclipse 2021-09 (4.21.0) 이거임help - install new Software work width : Latest Eclipse Release - https://download.eclipse.org/releases/2021-09 (버전 맞아야함)=> database Develpment에 원하는것만 or 전체 선택=> contact all update sites during install to find required software  이거 체크 해제 (꼭!!)=>  죽죽 next~ accept ~ fisish => install anywayres.. 2024. 7. 16.
data primary key를 중간에 추가 또는 수정 하고싶다면..? 만약 data primary key를 중간에 추가 또는 수정 하고싶다면..?단, 서비스가 개시하지 않은 상태에서만 가능안하는게 좋다알고만 있으세요 1. auto_increment 해제 2. 기존 primary key 삭제 3. 신규 primary key 등록 4. auto_increment 재등록alter table user change uidx uidx int(7) not null;alter table user drop primary key;alter table user add primary key (uidx,uid);alter table user change uidx uidx int(7) not null auto_increment; 2024. 6. 21.
java => mysql 전송시 timezone error 대응 java => mysql 전송시  time-zone error 이 뜨면 🔽my.ini 파일(txt파일)=># server_type=3 [mysqld] default-time-zone='+9:00'   변경 (노란줄 추가) 🔽 2024. 6. 14.
룰렛 data mysql로 전달 선생님의 폭주 ^^ㅎ=> 나중에 다시 배울거임! 일단 메모~  진짜 모르겠땀! ㅎㅅㅎ https://dev-eunse.tistory.com/143여기서 룰렛 만들고 왓음ㅎ 🔽 mysql table 생성create table game( gidx int(6) not null auto_increment, mid varchar(30) not null, mname varchar(30) not null, ginfo1 varchar(100) not null, ginfo2 int(4) null, //꽝인경우 null일수 있음 mdate timestamp not null default current_timestamp, primary key(gidx) );  🔽 [ MySQL Connector Java ] settin.. 2024. 6. 13.