Quote:
Originally Posted by Ken Maltby
It has been those in the "user" table of the KoboReader.sqlite file. If you can remove or invalidate the user id, the contact with the server becomes more anonymous. Kobo has added to the user table cells with the firmware updates, so there may be a differently constructed series of entries required to create the results you are looking for. For my older FW all I do is just zero out any alphanumeric cells (including urls) and set all the true/false cells to false.
|
What columns are you talking about? The user table is:
Code:
CREATE TABLE user(
UserID TEXT NOT NULL,
UserKey TEXT NOT NULL,
UserDisplayName TEXT,
UserEmail TEXT,
___DeviceID TEXT,
FacebookAuthToken TEXT,
HasMadePurchase BIT DEFAULT FALSE,
IsOneStoreAccount BIT DEFAULT FALSE,
IsChildAccount BIT DEFAULT FALSE,
RefreshToken TEXT,
AuthToken TEXT,
AuthType TEXT,
PRIMARY KEY (UserID))
I don't see anything there that looks to be related to the firmware version. And I checked a few older versions. No columns have been removed, so, so I can't see what you are referring to.