0

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

xralf
  • 3,312
  • 45
  • 129
  • 200

1 Answers1

1

see this: snapshot reference

maybe a bit easier, depending on size: you could export to csv, make some changes, export again, compare csv's

mothmonsterman
  • 2,451
  • 3
  • 21
  • 28