Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
koenster
Old
#231  
Member
Thanks Meter 15
Posts: 53
Join Date: Jan 2011
Location: Lisse
Quote:
Originally Posted by ztedd View Post
No, there isn't such a function. Why would you need that?
Because I want to merge 2 whatsapp chat history's with eachother. I can edit the conversations in the .HTML file, but not in the .DB file...
Thats why
 
ztedd
Old
#232  
Senior Member - OP
Thanks Meter 132
Posts: 204
Join Date: Feb 2011
Quote:
Originally Posted by koenster View Post
Because I want to merge 2 whatsapp chat history's with eachother. I can edit the conversations in the .HTML file, but not in the .DB file...
Thats why
Merging of chat database files is already on the feature requests list.
 
ztedd
Old
#233  
Senior Member - OP
Thanks Meter 132
Posts: 204
Join Date: Feb 2011
Quote:
Originally Posted by Salomonisch View Post
I also have this problem, all db's since yesterday or the day before react with this "Error Message", older db's still works fine...
And yes i copied at least ten times each db and tried it again and again... But no change...
Please help me and the other ones... Thanks in advance!
Then maybe the answer is exactly what is described inside the error message:
Quote:
Could not decrypt database file. Guess it's not a valid Android/Iphone database
file or Whatsapp changed the encryption.
Which version of Whatsapp on Android do you use?
 
Salomonisch
Old
#234  
Junior Member
Thanks Meter 0
Posts: 2
Join Date: Jul 2012
Quote:
Originally Posted by ztedd View Post
Then maybe the answer is exactly what is described inside the error message:

Which version of Whatsapp on Android do you use?
I use the WhatsApp Version 2.7.9946
A friend of mine has the same problem since update...
Still thanks in advance
 
dhiraj228
Old
#235  
Junior Member
Thanks Meter 0
Posts: 16
Join Date: Jun 2005
Quote:
Originally Posted by ztedd View Post
Do you get this error only with that particular msgstore.db.crypt file, but not with others?
all db after 26 are having this problem guess whatsapp has released a new update and it got updated
 
tejasdave
Old
#236  
Member
Thanks Meter 2
Posts: 33
Join Date: Feb 2012
Thanks...was looking for this.

Sent from my GT-N7000 using xda premium
 
ztedd
Old
#237  
Senior Member - OP
Thanks Meter 132
Posts: 204
Join Date: Feb 2011
Quote:
Originally Posted by Salomonisch View Post
I use the WhatsApp Version 2.7.9946
A friend of mine has the same problem since update...
Still thanks in advance
Quote:
Originally Posted by dhiraj228 View Post
all db after 26 are having this problem guess whatsapp has released a new update and it got updated
I just tried the newest version 2.8.529 and it still works fine. I have no idea what's the problem. If you like you can send me a sample database file that doesn't work and I'll have a look on it. Just contact me by private message.
 
Marvi70
Old
#238  
Member
Thanks Meter 1
Posts: 37
Join Date: Jul 2010
hi ztedd,

I am using your tool since a few weeks, and it's awesome! thanks for this.
Do you know if it's possible to merge the db-files into one with all messages?
e.g. I have 7 backup files, i deleted some messages every day, and now I want to have an overview of all messages over these last 7 days.
I saw that every message have an ID defined as primary key in the DB-file. But with my knowledge of sqlite it was not possible for me to get the desired result

thanks for your support
 
ztedd
Old
(Last edited by ztedd; 28th January 2013 at 03:40 PM.) Reason: Updated the howto to face the problem of new messages beeing put to the beginning instead of the end, inserted steps 1.-3.
#239  
Senior Member - OP
Thanks Meter 132
Posts: 204
Join Date: Feb 2011
Default Merge multiple sqlite database files

Quote:
Originally Posted by Marvi70 View Post
Do you know if it's possible to merge the db-files into one with all messages?
e.g. I have 7 backup files, i deleted some messages every day, and now I want to have an overview of all messages over these last 7 days.
I saw that every message have an ID defined as primary key in the DB-file.
Merging of multiple whatsapp databases is still on the feature request list.

But you can use this tool to merge two sqlite databases and afterwards convert the merged database with Whatsapp Xtract:
SQLite Compare
http://www.codeproject.com/Articles/...ompare-Utility

HOW TO MERGE SQLITE DATABASE FILES WITH SQLite Compare:
  • 1. Open the old database file in SQLite Database Browser ( http://sqlitebrowser.sourceforge.net/ ). Open the table messages in Browse Data. Press the Button " > " as often as necessary to get to the last page. Scroll down to the last message. Now write down the number (_id) of that last message, e.g. 65422
  • 2. Now open the new database file in SQLite Database Browser. Open the table messages in Browse Data. Click on the first entry (which has most fields with value "-1"). Click on Delete Record. Have a look at the now first entry and write down the number (_id) of that first message, e.g. 12
    Now Click on Execute SQL and execute the following SQL statement:
    UPDATE messages set _id = (65422 + 1 + _id - 12)
    (replace 65422 by your last message _id in the old database and 12 by your first message _id in the new database)
  • 3. Now all messages in the new database have the correct _id's.
    Click on Save. Close all windows of SQLite Database Browser.
  • 4. Download & Install SQLite Compare ( http://www.codeproject.com/Articles/...ompare-Utility ). Open SQLite Compare.
  • 5. File - Compare
    For example:
    Left file: msgstore-2012-06-01.1.plain.db
    Right file: msgstore-2012-06-07.1.plain.db
    (Make sure to have a backup of both files!)
    x Compare schema and data
    x Compare BLOB fields
    OK
  • 6. Double Click on table "messages" in the result window OR left click on table "messages" and hit button "Edit selected difference..."
  • 7. A new window opens, "Table messages"
    Click on blue button "R" (it's located after "Refresh Comparison", "L" and before "≠", "=")
  • 8. Now on the right side all messages are shown that aren't included in the left file.
    Now you can select multiple messages (first left click on the first message to select, then scroll down to the last message to select and press SHIFT + left click on the last message to select).
    I noticed that you can't handle too many messages at once as it produces an error. Just try. I succeeded with about 1000-1500 messages.

    Now click on the button with the arrow from right to left: ←

    Now the selected messages are copied from the right database to the left database.
  • 9. Repeat the steps in (8.) until all the messages are copied from the right file to the left file.
  • 10. Maybe you also need to to this for the table chat_list if there are some new chat contacts in the newer backup file.
  • 11. Now the left file (e.g. msgstore-2012-06-01.1.plain.db) contains all the messages from the prior file msgstore-2012-06-01.1.plain.db and the newer file msgstore-2012-06-07.1.plain.db. (No saving necessary as the tool automatically applies the changes to the file after pressing the ← button).
  • 12. Now you have 3 options how to go on:

    a) Do you want to merge another database file, appending it to the merged file? Then repeat the steps with an even newer database file on the right, e.g. msgstore-2012-06-12.1.plain.db, if you have multiple database files to merge.

    b) Do you want to import the merged database file to Whatsapp? Then rename the merged database file (the left one) to "msgstore.db", copy it to the sdcard to location /sdcard/WhatsApp/Databases/msgstore.db and make sure that it's the only file in that folder. Now install Whatsapp and confirm when asked to import the Backup during installation.

    c) Or do you want to convert the merged database file to browser-friendly html using Whatsapp Xtract? Then give the left file msgstore-2012-06-01.1.plain.db to Whatsapp Xtract, e.g. using drag and drop onto the whatsapp_xtract_drag'n'drop_database(s)_here.bat.
The Following 8 Users Say Thank You to ztedd For This Useful Post: [ Click to Expand ]
 
MeTa Apps
Old
#240  
Junior Member
Thanks Meter 0
Posts: 10
Join Date: Jul 2012

 
DONATE TO ME
Thanks!

 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

report this ad
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...