View Single Post
Posts: 248 | Thanked: 1,142 times | Joined on Dec 2014 @ Earth
#310
Originally Posted by DrYak View Post
- Where are the data of Whatsup stored ?
I would like to transfer my old message from mojoWhatsup's sqlite3 .db file to whatever Whatsup uses.
Originally Posted by Schturman View Post
And is it possible to import db (chats, groups etc..) from android whatsapp client ?
Okay, I noticed (lsof) that whatup stores its messages inside "~/.whatsup/{phonenumber}.db".
But I'll need to make sense of the schema
Code:
CREATE TABLE messages (timestamp integer, status integer, content text, key text,type integer, media_id integer, media text, conversation_jid text, author text, delivered text,readed text, count integet, comment text);
before I can write an importer.

I'll probably need some (read-) access to the source.

@Cepi, where can I find your source, please ?
I need to understand the format/content of these columns.

I'd like to write an importer, at least for my self and mojoWhatup, and maybe a starting point for official WhatsApp.