标签:
You don‘t say what you wish to do with the dumped file.
I would use the following to get a CSV file, which I can import into almost everything
.mode csv
.header on
.out file.dmp
select * from emp;
If you want to reinsert into a different SQLite database then:
.mode insert <target_table_name>
.out file.sql
select * from emp
标签:
原文地址:http://www.cnblogs.com/jayzee/p/4403707.html