Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android check SQLite database version via shell?

Following this question is there a way to check the app's current database version via adb shell? Also how do I check the user cookie field mentioned in the question?

like image 264
jerrytouille Avatar asked Apr 09 '26 00:04

jerrytouille


1 Answers

To show the database file's user version number (which is the same as the user cookie), execute this SQL command:

PRAGMA user_version;
like image 97
CL. Avatar answered Apr 11 '26 12:04

CL.