Home > Database > Mysql Tutorial > 解决GBK数据库文件通过source导入MySQL数据库乱码的问题

解决GBK数据库文件通过source导入MySQL数据库乱码的问题

WBOY
Release: 2016-06-07 16:57:21
Original
1301 people have browsed it

将gbk导入到数据库是一件头疼的事情,尤其是一些软件官方没有给出导入导出功能,并且遇到大的.sql文件的时候。这里经过无数次摸索

将gbk导入到数据库是一件头疼的事情,尤其是一些软件官方没有给出导入导出功能,,并且遇到大的.sql文件的时候。这里经过无数次摸索,终于找到了解决方案。

一、先设置数据库的格式为gbk

alter database databasename character set gbk;

然后设置客户端为gbk

set names gbk;

再通过source导入:

source filename.sql

OK,导入成功

linux

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