Home > Database > Mysql Tutorial > body text

mysql韩文乱码的问题_MySQL

WBOY
Release: 2016-06-01 13:42:06
Original
2074 people have browsed it

bitsCN.com mysql韩文乱码的问题 因为我建立的数据库是包含韩文的,所以在这里谈谈韩文的乱码解决问题的心得。其他的亚洲语言是大同小异。 我总结了一下,主要有这么几个步骤(红色字体为你自己定义的内容,可替换):   1.建立数据库的时候,就声明默认的设置:    create database database_name  DEFAULT CHARSET=utf8; 这里我使用了utf8 格式,我认为大家应该首先尝试这个格式。我最先尝试的是专门的韩文的设置,但是并没有解决问题。 2.建立了数据库之后,用下列命令来查看设置语言的状态:     SHOW VARIABLES LIKE 'character_set_%'; mysql韩文乱码的问题_MySQL 如上图所示。 3.设置其他的 “variable_name”的 value 也为utf8:   SET character_set_client = utf8;SET character_set_connection = utf8;SET character_set_results = utf8;SET character_set_database=utf8;SET character_set_server=utf8; mysql韩文乱码的问题_MySQL 然后就可以开始在这个database下建立table,插入值,可以显示韩文。我想也可以显示中文的。
  作者 brandyzhaowei bitsCN.com

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template