怎样设置使mysql支持中文的插入?
支持插入中文的前提是:你的数据库编码和mysql连接所使用的字符集要相同,即:你的数据库(comment)的字符集是GBK的,那么你在数据库连接(mysql_connect)时要加上一句mysql_query('set
10多年的东城网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都营销网站建设的优势是能够根据用户设备显示端的尺寸不同,自动调整东城建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。创新互联从事“东城网站设计”,“东城网站推广”以来,每个客户项目都认真落实执行。
names
gbk');
这样的话就不会出现中文插入时出现乱码现象。UTF8字符集时与GBK同理。
还有疑问?
怎样往MYSQL输入汉字?
有两种方法...你试一下...不行的话加我的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数据库插入汉字,但是不显示,英文可以
查询前先加一句。并且统一所有编码。
MYSQL_QUERY('SET NAMES GBK')
应该可以直接插入汉字的 你注意看看你的mysql的编码。一般在安装mysql的时候会提示你使用什么编码,选择适用中文的字符编码即可。
文章题目:mysql怎么插入汉字 mysql怎么添加中文数据
网站网址:http://scyingshan.cn/article/ddgsgoo.html