Quote:
Originally Posted by nynaevelan
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.