Thread
:
Help Exporting SMS from N900.
View Single Post
jvesiluoma
2010-02-26 , 23:10
Posts: 28 | Thanked: 58 times | Joined on Jan 2010
#
2
Hi,
Maybe this helps.
Note: Make backups first. I will not take any responsibility if you brick your device. It's your own responsibility.
1. Open terminal
2. give following command:
sqlite3 -html /home/user/.rtcom-eventlogger/el.db "SELECT service_id,event_type_id,free_text, remote_uid FROM Events WHERE remote_uid='xxxxxxxxxxxx' order by start_time DESC;" > output.html
3. xxxxxxxxxxxx in above command is the phone number of the contact. For example you want to save conversations with the person that phone number is 1234567890 the command would be:
sqlite3 -html /home/user/.rtcom-eventlogger/el.db "SELECT service_id,event_type_id,free_text, remote_uid FROM Events WHERE remote_uid='1234567890' order by start_time DESC;" > output.html
Now you should have output.html file that has conversation in HTML format. Now you just need to transfer that file to your computer via USB for example.
You can see additional output modes by giving following command in terminal and replacing -html with something else like -csv or -column for example.
sqlite3 --help
Hope it helps.
Regards,
Jarkko
Last edited by jvesiluoma; 2010-02-26 at
23:11
. Reason: ...
Quote & Reply
|
The Following 5 Users Say Thank You to jvesiluoma For This Useful Post:
di1in
,
Helmuth
,
rabarkar
,
sashabe
,
ukaef
jvesiluoma
View Public Profile
Send a private message to jvesiluoma
Find all posts by jvesiluoma