티스토리 뷰
728x90
반응형
시나리오
My-SQL5.1 설치 이후 한글 입력 오류 및 한국어 설정
정보
1. 한국어 입력 오류 현상
mysql> insert into table1 (sentence) values('한국어 입력 테스트utf8');
ERROR 1366 (HY000): Incorrect string value: '\xC7\xD1\xB1\xB9\xBE\xEE...' for co
lumn 'sentence' at row 1
[테스트 환경]
mysql> show variables like 'c%';
+--------------------------+----------------------------------------------------
-----+
| Variable_name | Value
|
+--------------------------+----------------------------------------------------
-----+
| character_set_client | utf8
|
| character_set_connection | utf8
|
| character_set_database | utf8
|
| character_set_filesystem | binary
|
| character_set_results | utf8
|
| character_set_server | utf8
|
| character_set_system | utf8
|
| character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.1\share\chars
ets\ |
| collation_connection | utf8_general_ci
|
| collation_database | utf8_general_ci
|
| collation_server | utf8_general_ci
|
| completion_type | 0
|
| concurrent_insert | 1
|
| connect_timeout | 10
|
+--------------------------+----------------------------------------------------
-----+
[테스트 환경]
mysql> show variables like 'c%';
+--------------------------+----------------------------------------------------
-----+
| Variable_name | Value
|
+--------------------------+----------------------------------------------------
-----+
| character_set_client | utf8
|
| character_set_connection | utf8
|
| character_set_database | utf8
|
| character_set_filesystem | binary
|
| character_set_results | utf8
|
| character_set_server | utf8
|
| character_set_system | utf8
|
| character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.1\share\chars
ets\ |
| collation_connection | utf8_general_ci
|
| collation_database | utf8_general_ci
|
| collation_server | utf8_general_ci
|
| completion_type | 0
|
| concurrent_insert | 1
|
| connect_timeout | 10
|
+--------------------------+----------------------------------------------------
-----+
2. 한국어 입력 설정
2.1 설치 경로\my.ini 파일 수정
[client]
port=3306
default-character-set=euckr
[mysql]
default-character-set=euckr
# SERVER SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this
# file.
#
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="C:/Program Files/MySQL/MySQL Server 5.1/"
#Path to the database root
datadir="D:/My-SQL/Data/"
# The default character set that will be used when a new schema or table is
# created and no character set is defined
default-character-set=euckr
2.2 mysql 서비스 재시작
관리도구 -> 서비스 -> MySQL 재시작
2.3 언어셋 설정 확인
mysql> show variables like 'c%';
+--------------------------+----------------------------------------------------
-----+
| Variable_name | Value
|
+--------------------------+----------------------------------------------------
-----+
| character_set_client | euckr
|
| character_set_connection | euckr
|
| character_set_database | euckr
|
| character_set_filesystem | binary
|
| character_set_results | euckr
|
| character_set_server | euckr
|
| character_set_system | utf8
|
| character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.1\share\chars
ets\ |
| collation_connection | euckr_korean_ci
|
| collation_database | euckr_korean_ci
|
| collation_server | euckr_korean_ci
|
| completion_type | 0
|
| concurrent_insert | 1
|
| connect_timeout | 10
|
+--------------------------+----------------------------------------------------
[client]
port=3306
default-character-set=euckr
[mysql]
default-character-set=euckr
# SERVER SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by the MySQL Server. Make sure that
# you have installed the server correctly (see above) so it reads this
# file.
#
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="C:/Program Files/MySQL/MySQL Server 5.1/"
#Path to the database root
datadir="D:/My-SQL/Data/"
# The default character set that will be used when a new schema or table is
# created and no character set is defined
default-character-set=euckr
2.2 mysql 서비스 재시작
관리도구 -> 서비스 -> MySQL 재시작
2.3 언어셋 설정 확인
mysql> show variables like 'c%';
+--------------------------+----------------------------------------------------
-----+
| Variable_name | Value
|
+--------------------------+----------------------------------------------------
-----+
| character_set_client | euckr
|
| character_set_connection | euckr
|
| character_set_database | euckr
|
| character_set_filesystem | binary
|
| character_set_results | euckr
|
| character_set_server | euckr
|
| character_set_system | utf8
|
| character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.1\share\chars
ets\ |
| collation_connection | euckr_korean_ci
|
| collation_database | euckr_korean_ci
|
| collation_server | euckr_korean_ci
|
| completion_type | 0
|
| concurrent_insert | 1
|
| connect_timeout | 10
|
+--------------------------+----------------------------------------------------
3. 확인
mysql> insert into table1 (sentence) values('한국어 입력 테스트euckr');
Query OK, 1 row affected (0.03 sec)
mysql> select * from table1;
+-------------------------+
| sentence |
+-------------------------+
| euckr |
+-------------------------+
1 row in set (0.00 sec)
윈도우 명령 프롬프트 상태에서는 select 결과 "한국어 입력 테스트" 부분은 출력되지 않고 "euckr" 영어 부분만 출력이 된다.
Query OK, 1 row affected (0.03 sec)
mysql> select * from table1;
+-------------------------+
| sentence |
+-------------------------+
| euckr |
+-------------------------+
1 row in set (0.00 sec)
윈도우 명령 프롬프트 상태에서는 select 결과 "한국어 입력 테스트" 부분은 출력되지 않고 "euckr" 영어 부분만 출력이 된다.
한글 입력이 정상적으로 되었는지에대한 확인 방법은 웹상에 출력해 보거나 My-SQL에서 제공하는
"My-SQL Query Browser"을 이용하여 확인해 보면 정상적으로 입력된것을 확인 할 수 있다.
"My-SQL Query Browser"을 이용하여 확인해 보면 정상적으로 입력된것을 확인 할 수 있다.
비고
Windows 명령 프롬프트에서 My-SQL5.1의 한글이 왜 출력되지 않는지에 대해서는 아직 잘 모르겠다.
정보를 찾는대로 업로드할 예정...
정보를 찾는대로 업로드할 예정...
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 표현 언어(expression language)
- 상품 등록
- System.Diagnostics
- 스프링 시큐리티(spring security)-http basic 인증
- .submit()
- system.io
- java.sql
- await
- 특정 문자를 기준으로 자르기
- MainActor
- jstl(java standard tag library)-core
- java-개발 환경 설정하기
- jsp 오픈 소스
- 스프링 프레임워크(spring framewordk)
- java 키워드 정리
- error-java
- 스프링 프레임워크(spring framework)
- In App Purchase
- 진수 변환
- 문자 자르기
- 스프링 시큐리티(spring security)
- java web-mvc
- 메이븐(maven)
- nl2br
- 제품 등록
- jstl(java standard tag library)
- 인텔리제이(intellij)
- 람다식(lambda expression)
- REST API
- React
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함