The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-11-15
, 02:48
|
Moderator |
Posts: 6,215 |
Thanked: 6,400 times |
Joined on Nov 2011
|
#22
|
I've been playing with the tracker database a little now... Copied it off to an external host and looked at it. The format is sqlite3, and it can be dumped with sqlitebrowser or python using apsw (Another Python SQLite Wrapper).
The DB contains loads of stuff in addition to the SMS'es, so it requires some tinkering to access just the messages amongst all the data there.
![]() |
2012-11-15
, 06:56
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#23
|
The Following User Says Thank You to juiceme For This Useful Post: | ||
![]() |
2012-11-15
, 07:34
|
Moderator |
Posts: 6,215 |
Thanked: 6,400 times |
Joined on Nov 2011
|
#24
|
Yes, the complete SMS'es are there. Also the text part of MMS'es is stored there but the pictures in the messages are stored separately (and maybe other attachments too, I have not checked with MMS'es containing sound etc..)
To access just the messages would require understanding the DB structure and writing correct queries to retrieve/manipulate/delete the records. It seems to me that the messages are tagged with consistent id's so this should be possible.
I have to confess it's been really long time since I have looked into insides of a sql database... I did some course work on postgresql in the university but that was last millenium
![]() |
2012-11-15
, 14:08
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#25
|
![]() |
2012-11-15
, 23:58
|
Posts: 594 |
Thanked: 1,094 times |
Joined on Aug 2012
@ Rhine
|
#26
|
/home/user/.cache # cd tracker sh: cd: can't cd to tracker
![]() |
2012-11-16
, 00:13
|
Moderator |
Posts: 6,215 |
Thanked: 6,400 times |
Joined on Nov 2011
|
#27
|
How did you get the meta.db?
I always get
tried via Putty, WinSCP, Filebox and TerminalCode:/home/user/.cache # cd tracker sh: cd: can't cd to tracker
as user and root and as user with devel-su
~ # ls -l /home/user/.cache/tracker/meta.db -rw-r--r-- 1 user metadata 111792128 Nov 16 08:09 /home/user/.cache/tracker/meta.db ~ #
![]() |
2012-11-16
, 00:52
|
Posts: 594 |
Thanked: 1,094 times |
Joined on Aug 2012
@ Rhine
|
#28
|
So did you try navigating to this location using Filebox to check if it exists?Code:~ # ls -l /home/user/.cache/tracker/meta.db -rw-r--r-- 1 user metadata 111792128 Nov 16 08:09 /home/user/.cache/tracker/meta.db ~ #
Using username "root". root@192.168.2.100's password: Last login: Fri Nov 16 01:50:30 2012 from 192.168.2.102 BusyBox v1.20.0.git (MeeGo 3:1.20-0.2+0m8) built-in shell (ash) Enter 'help' for a list of built-in commands. RM696-21-3_PR_001:~# cd /home/user/.cache RM696-21-3_PR_001:/home/user/.cache# ls Crochik data music-suite video-suite FOSS_notices.stamp facebook nmsrestapi wazapp George Ruinelli farsight pipacs.com wocky Nokia korva rygel com.meecast.omweather libkok telepathy contactsd media-art tracker RM696-21-3_PR_001:/home/user/.cache# ls -l /home/user/.cache/tracker/meta.db ls: /home/user/.cache/tracker/meta.db: Permission denied
![]() |
2012-11-16
, 00:57
|
Moderator |
Posts: 6,215 |
Thanked: 6,400 times |
Joined on Nov 2011
|
#29
|
The Following User Says Thank You to thedead1440 For This Useful Post: | ||
![]() |
2012-11-16
, 01:53
|
Posts: 594 |
Thanked: 1,094 times |
Joined on Aug 2012
@ Rhine
|
#30
|
The DB contains loads of stuff in addition to the SMS'es, so it requires some tinkering to access just the messages amongst all the data there.