大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
有两种方法...你试一下...不行的话加我的QQ 76558882
凭祥网站建设公司创新互联建站,凭祥网站设计制作,有大型网站制作公司丰富经验。已为凭祥千余家提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的凭祥做网站的公司定做!
1. 修改 mysql 安装目录下的 my.ini
修改 default-character-set=latin1
把latin1 改为 gb2312 或 gbk 注意: 修改两处
CLIENT SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by MySQL client applications.
# Note that only client applications shipped by MySQL are guaranteed
# to read this section. If you want your own MySQL client program to
# honor these values, you need to specify it as an option during the
# MySQL client library initialization.
#
[client]
port=3306
[mysql]
default-character-set=latin1 //把 latin1 改为 gb2312或 gbk
# 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.0/"
#Path to the database root
datadir="C:/Program Files/MySQL/MySQL Server 5.0/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=latin1
//将latin1 改为 gb2312 或 gbk
2. 进入在命令提示符下登录mysql
输入 charset gb2312
你再尝试使用 insert into 插入一条记看看...
mysql把语言改成中文的步骤如下:
第一步我们需要打开软件,创建一个数据库,如下图所示:
第二步创建数据库之后,需要创建一张汉字和拼音对照表,使用create table语句创表,如下图所示:
第三步我们打开表,可以看到成功创建一张名为t_base_pinyin的表,并且含有pin_yin_和code_两个字段,如下图所示:
第四步我们使用INSERT INTO t_base_pinyin () VALUES ()语句来给汉字拼音对照表添加对照数据,如下图所示:
第五步我们打开t_base_pinyin ,可以看到对照数据已经插入成功,如下图所示:
第六步我们最后需要创建一个拼音转换汉字的函数,输入完成之后进行执行,语句如下图所示:
第七步我们输入select to_pinyin('测试')语句进行查询,可以看到输出to_pinyin('测试'),ceshi,已经成功将中文转换成拼音,如下图所示:
有两种方法...你试一下...不行的话加我的QQ
76558882
1.
修改
mysql
安装目录下的
my.ini
修改
default-character-set=latin1
把latin1
改为
gb2312
或
gbk
注意:
修改两处
CLIENT
SECTION
#
----------------------------------------------------------------------
#
#
The
following
options
will
be
read
by
MySQL
client
applications.
#
Note
that
only
client
applications
shipped
by
MySQL
are
guaranteed
#
to
read
this
section.
If
you
want
your
own
MySQL
client
program
to
#
honor
these
values,
you
need
to
specify
it
as
an
option
during
the
#
MySQL
client
library
initialization.
#
[client]
port=3306
[mysql]
default-character-set=latin1
//把
latin1
改为
gb2312或
gbk
#
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.0/"
#Path
to
the
database
root
datadir="C:/Program
Files/MySQL/MySQL
Server
5.0/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=latin1
//将latin1
改为
gb2312
或
gbk
2.
进入在命令提示符下登录mysql
输入
charset
gb2312
你再尝试使用
insert
into
插入一条记看看...
好像不能直接向数据库中写入中文,但是可以复制上中文内容:先把要加入的内容写到记事本上,然后复制过去就OK了。
一般情况下可以用SQL语句向数据库中插入或者修改,这个时候就不会说不能写入中文什么的了。
方法一:在插入中文之前 先输命令set names gbk 告诉客户端你在这里敲的命令是GBK编码的 客户端会把你接下来敲的命令转成UTF-8 你数据库内部的编码还是UTF-8
方法二:修改你安装目录下面的my.ini这个文件 编辑这个文件 找到
[mysql]
default-character-set=utf8
把default-character-set=utf8改成default-character-set=GBK
这里的意思是告诉MySQL你在客户端敲的命令都是GBK编码
注:不用改[mysqld]下面的default-character-set 这里的default-character-set指的是MySQL底层存储的字符集编码 可以是utf8 utf8是支持各国文字的
改过后重启服务
方法三:根据向导重新配置 把编码设成gbk或gb2312 不过这把你MySQL内部的字符集编码都改变了 不建议
1、Apache 和 MySQL变绿后,这应该都会了。点击Mysql后的admin,
2、然后会进入这个页面,图中方框中的是现在使用的语言,点击后面的小三角,
3、点击三角后会弹出这条语言选择框,选择图中的中文选项,
4、Mysql的窗口就修改成中文的了,完成效果图。