Check when SQLite database / tables were updated (PHP)

Is there any way to check when the latest SQLite db update?
Alternatively, is there a way to do this for a specific table?

Since SQLite is a file db, I think I can see the date in the file, but I'm not sure I can rely on this.

+2
source share
2 answers

I know this is an old post, but if anyone else reads this, see this post:

Android checks when a table has been updated

+2
source

I believe this can be achieved by SQLite TRIGGERS

+2
source

All Articles