반응형
MYSQL 인코딩 설정 방법
[현재 mysql 인코딩 상태 확인]
: show variables like 'c%';
: status
[클라이언트 인코딩 변경]
: set names utf8;
[Database 인코딩 변경]
: ALTER DATABASE wewas default character set utf8;
MySQL 설치 시 인코딩 설정
MySQL 설치하는 중 인코딩(encoding) 변경할려면 my.ini 파일 만들어서 아래의 내용 추가하고 실행하면 됨
MySQL 설치가 완료되어있었다면 아래의 my.ini 추가 후 재기동 하면 적용됨
[client] [mysqld] character-set-client-handshake = FALSE init_connect="SET collation_connection = utf8_general_ci" init_connect="SET NAMES utf8" character-set-server = utf8
[mysql] default-character-set = utf8
[mysqldump] default-character-set = utf8 |
반응형
'DataBase > MySQL' 카테고리의 다른 글
Windows mysql 설치 (0) | 2020.10.04 |
---|---|
/usr/bin/mysqld_safe 파일 환경변수 설정 인식 오류 해결법 (0) | 2020.09.15 |