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.
那么如何在 Mac 上将具有相同架构的两个 .sqlite 数据库文件(如 somedata.sqlite 和 someOtherData.sqltie)合并到一个 .sqlite 文件中呢?
我猜这可以在终端中完成,如果有人能详细描述这些步骤,那就太酷了!
如果这两个文件具有完全相同的架构,您可以转储文件并将它们导入新的数据库中。
sqlite3 database1.db '.dump' >> tmp.txt sqlite3 database2.db '.dump' >> tmp.txt sqlite3 database3.db '.import tmp.txt'
我不在 OSX 中,所以可能不是这样,但你明白了。