sqlite3:从命令行将模式转储到.sql文件中

前端之家收集整理的这篇文章主要介绍了sqlite3:从命令行将模式转储到.sql文件中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图从OS X中的命令行将test.db的模式(即没有数据)转储到名为schema.sql文件中,而不启动sqlite3.

我知道我能做到:

sqlite3
.open test.db
.output schema.sql
.schema
.quit

但是我不想启动sqlite 3.这……

echo '.output schema.sql' | sqlite3 test.db

创建空文件,但这…

echo '.schema' | sqlite3 test.db

仅打印架构.如何从终端将其写入该文件

谢谢!

shell允许重定向,sqlite3可以将命令作为参数获取
sqlite3 test.db .schema > schema.sql
原文链接:https://www.f2er.com/sqlite/197620.html

猜你在找的Sqlite相关文章