0

According to this question, the Android database file contains the version number. However I can't figure out how to find it using SQLiteManager for Firefox.

Is it possible to view the version using this tool?

Community
  • 1
  • 1
Jeff Axelrod
  • 27,676
  • 31
  • 147
  • 246
  • 1
    execute `PRAGMA user_version;` in the same place you can execute other SQLite queries - that will show you the version set by `SQLiteOpenHelper` – zapl Aug 13 '12 at 22:29

1 Answers1

1

@zapl wrote:

execute PRAGMA user_version; in the same place you can execute other SQLite queries - that will show you the version set by SQLiteOpenHelper

Jeff Axelrod
  • 27,676
  • 31
  • 147
  • 246