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.
我正在考虑将 SQLite 数据库文件存储在版本控制(git)中,我还想查看不同版本之间数据库文件的差异。
我们可以配置 SQLite 以可读的文本格式存储它的数据(假设我没有在数据库中存储任何二进制数据)?这样我就不必将数据转储到文本文件来查看差异。比如说 CSV 格式。
是否可以?
原生 SQLite 数据库文件格式始终是二进制的,但您可以使用.dump命令sqlite3行工具的命令来创建数据库的文本表示。
.dump
sqlite3