Quick question before I get too deep in this. My app.db has "duplicate" tables:
Code:
$ sqlite3 app.db .tables
tbl_addon_0325475928 tbl_appbrowse_0325475929 tbl_info_0325475928
tbl_addon_0325475929 tbl_appinfo tbl_info_0325475929
tbl_appbrowse_0325475928 tbl_cmdfunc tbl_version
The data in them is not identical. It
looks like the 0325475928 version is more complete, but I don't know where there are multiple versions to begin with, and I didn't find any good hits on this through google.
Should I expect to see two versions of these tables? If so, any way to tell which I
should be using?
Only time I've seen this in the past is some other apps creating versioned tables for upgrades. If that's the case here, though, I'd expect the higher versioned table to include more complete data, but that doesn't seem to be the case here.