No you no understand me. SQLite Browser is awesome tool, I know that file type is SQLite v3, but!
Here describe of table with players:
CREATE TABLE Players ( Id INTEGER PRIMARY KEY NOT NULL, Lock INTEGER NOT NULL, Alive INTEGER NOT NULL, UID CHAR(64) UNIQUE NOT NULL, Data BLOB NULL );
So:
ID - unique number auto-increment.
Lock - Boolean casted to integer (0 - false, 1 - true) Idea of this field - is show is player online of server, so if 1 -> then pler on server.
Alive - Boolean casted to integer (0 - dead, 1 - alive).
UID - is user unique ID, it seems to me based on Base64 + AES encription (i don't know witch type AES64, AES-128,AES-256,AES-1024.... ).
Data - is BLOB that's mean it's byte format, but it can't be only byte array, it's an object of something class witch was serialized for storing in BLOB filed.
So, question is how to read the data witch stored in this BLOB field?
I think that some server owners already think about how to validate database, how to proper normalize database file (SQLite use page system, so if delete record from table there's an empty space in page and it can increase size of database).
Any way moders will create futures witch must use database, so we need access to SQLite database, and if all data will stored inside database with cryptography - how mod devs can detect how was stored data inside table. Any way need to create chain between ID and player in database to validate access rights to something action in game.
That's why I asked that question: How can I read data inside database (table Players) and any field inside this table?