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] default-character-set = utf8 [mysqld] character-set-client-handshake = FALSE init_..