xralf
xralf

Reputation: 3632

Test for changes in sqlite database

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

Upvotes: 0

Views: 161

Answers (1)

mothmonsterman
mothmonsterman

Reputation: 2481

see this: snapshot reference

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

Upvotes: 1

Related Questions