创建 .dump 文件
creating .dump file
我想为 sqlite 数据库创建 .dump 文件,其中包含所有 table。我创建了 .sql 文件,但我想要 .dump 文件。我还使用 PRAGMA 函数创建了 .dump 文件,但它只创建了一个 table。
.output output_file_name.dump
.pragma table_info 'table_name';
.dump table_name
.exit
Use the ".dump" command to convert the entire contents of a database into a single ASCII text file.
所以使用.dump
命令:
.output output_file_name.sql
.dump
.exit
我想为 sqlite 数据库创建 .dump 文件,其中包含所有 table。我创建了 .sql 文件,但我想要 .dump 文件。我还使用 PRAGMA 函数创建了 .dump 文件,但它只创建了一个 table。
.output output_file_name.dump
.pragma table_info 'table_name';
.dump table_name
.exit
Use the ".dump" command to convert the entire contents of a database into a single ASCII text file.
所以使用.dump
命令:
.output output_file_name.sql
.dump
.exit