Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们的客户为我们提供了一个名为 db.schema 的文件。现在有一个命令可以用来运行这个文件来在 sqlite3中创建一个.db文件吗?我可以在不必输入 db.schema 文件中提到的所有查询的情况下执行此操作吗?
请帮忙!谢谢!
如果该文件仅包含正确格式的 SQL 命令,请获取sqlite3命令行工具,然后像这样运行它:
sqlite3
sqlite3 mydatabase.db < db.schema
许多 SQLite 管理工具还具有导入此类文件的功能。