View Single Post
Old 12-14-2011, 07:44 AM   #1470
Faw
Junior Member
Faw began at the beginning.
 
Posts: 7
Karma: 12
Join Date: Dec 2011
Device: Kindle Touch
Quote:
Originally Posted by nynaevelan View Post
What program did you use to open it??
http://sqliteman.com/

The table that has the collections is collection_v1_0 and looks like this:

Code:
CREATE TABLE collection_v1_0( 
  collection_id integer primary key,  -- first value is 1001         
  user_id char(64) not null,          -- encrypted uid+pw? (all have same value)
  name varchar(128) not null,         -- name of collection
  ordinal_number integer not null,    -- position in list/creation order?       
  syncable integer not null,          -- self explanatory
  editable integer not null,          -- self explanatory
  create_ts datetime not null,        -- creation date/time
  update_ts datetime not null,        -- update date/time
  unique (user_id, name)           
)
I see no book information anywhere in the databases though.
Faw is offline