Home > Database > Mysql Tutorial > 解决mysql导入导出数据乱码问题

解决mysql导入导出数据乱码问题

WBOY
Release: 2016-06-07 16:21:47
Original
1138 people have browsed it

最近在linux上面用mysqldump导出数据,放在windows系统中导入就会出现中文乱码,然后就会导致出现: Unknown MySQL server host和Can't connect to the server的错误。 解决mysql导入导出数据乱码问题就是统一导入导出的编码,linux默认的是utf8编码,而wind

   最近在linux上面用mysqldump导出数据,放在windows系统中导入就会出现中文乱码,,然后就会导致出现: Unknown MySQL server host和Can't connect to the server的错误。

  解决mysql导入导出数据乱码问题就是统一导入导出的编码,linux默认的是utf8编码,而windows是gbk编码,所以会出现上面的乱码问题。

  解决mysql导入导出数据乱码问题

  首先要做的是要确定你导出数据的编码格式,使用mysqldump的时候需要加上--default-character-set=utf8,例如下面的代码:

  mysqldump -uroot -p --default-character-set=utf8 dbname tablename > bak.sql

  那么导入数据的时候也要使用--default-character-set=utf8:

  mysql -uroot -p --default-character-set=utf8 dbname

  这样统一编码就解决了mysql数据迁移中的乱码问题了。

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