测试 sqlite 数据库中的更改
我有一个与 sqlite 数据库一起使用的应用程序。我想运行这个应用程序,在应用程序中进行一些操作(例如单击按钮),然后查看数据库中发生了什么变化。我想看看这次行动后发生的一切变化。
sqlite 是否可以以某种方式保存状态并在几分钟后查看差异(旧状态与新状态)?
谢谢
I have an application that works with an sqlite database. I'd like to run this application, make some operation in the application (e.g. click a button) and then see what has changed in the database. I'd like to see everything that changed ofter this operation.
Is it possible in sqlite to save a state somehow and after a few minutes view the differences (old state versus new state)?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看到这个:快照参考
也许是更容易一些,具体取决于大小:您可以导出到 csv,进行一些更改,再次导出,比较 csv
see this: snapshot reference
maybe a bit easier, depending on size: you could export to csv, make some changes, export again, compare csv's