본문 바로가기

카테고리 없음

mysql 설치




http://www.mysql.com/
http://www.mysql.com/downloads/mirror.php?id=403506#mirrors

mysql-installer-5.5.15.0                 [required  .net fw 4.0]

http://www.microsoft.com/downloads/ko-kr/details.aspx?familyid=9cfb2d51-5ff4-4491-b0e5-b386f32c0992&displaylang=ko

http://www.mysql.com/downloads/mirror.php?id=403046#mirrors
mysql connector 

<< Window servicepack 3  >>
http://www.microsoft.com/downloads/ko-kr/details.aspx?familyid=5b33b5a8-5e76-401f-be08-1e1555d4f3d4&displaylang=ko 





C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -u root -p





create table if not exists team(
    team_id mediumint primary key auto_increment,
    name varchar(255) not null
);
delete from team;
insert into team(name) value('manchester fc');
insert into team(name) value('london fc');
insert into team(name) value('liverpool fc');
insert into team(name) value('blackburn fc');
insert into team(name) value('leeds fc');
insert into team(name) value('ipswich fc');
insert into team(name) value('bolton fc');
commit;





mysql-connector-java-5.1.17-bin 를
자바가 설치된 디렉토리 아래의 C:\Program Files\Java\jdk1.6.0_18\jre\lib  에 저장