Home > Database > Mysql Tutorial > body text

SQLite数据转移到Mysql

WBOY
Release: 2016-06-07 15:35:22
Original
1543 people have browsed it

最常用的两种方式是通过 导出sql 和 导出csv 来实现,因为SQLite和Mysq在语法上有诸多区别,所以导出sql时修改起来比较繁琐也容易出错。 这里尝试了通过CSV的方法实现数据转移。 SQLite工具我用的SQLiteStudio2.1.5 下载地址 http://sqlitestudio.pl/?act=do


最常用的两种方式是通过导出sql导出csv来实现,因为SQLite和Mysq在语法上有诸多区别,所以导出sql时修改起来比较繁琐也容易出错。

这里尝试了通过CSV的方法实现数据转移。

SQLite工具我用的SQLiteStudio2.1.5 下载地址 http://sqlitestudio.pl/?act=download

Mysql我用的HeidiSQL8.3 下载地址  http://www.heidisql.com/download.php

SQLiteStudio打开数据库文件,找到表,右键菜单中有导出表功能,可设置导出格式,可设置列分隔符以及文件编码格式

HeidiSQL中选中表后,在工具菜单中有导入CSV文件功能,可设置编码格式,分隔符,忽略行以及目标字段等等


有个需要注意的地方就是HeidiSQL导入时,如果Datetime字段加了引号,如 “2014-03-12 11:12:13”,导入时会提示错误,

只需要把引号去掉就行了,SQLiteStudio导出时字段都不加引号,所以不存在这个问题,反而HeidiSQL自己导出的CSV会加引号


我先前转过一篇通过sql脚本转移的帖子在这里 http://blog.csdn.net/shellching/article/details/8072143



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