+ Reply to Thread
Page 1 of 5 123 ... LastLast
Results 1 to 10 of 42

Thread: MyBackup v3.0.4

  1. #1
    Join Date
    Oct 2008
    Posts
    194

    Default MyBackup v3.0.4


    Now Backup:
    Contacts,Bookmarks,SMS,MMS(attachments),AK Notepad,Settings,Home shortcuts and more..

  2. #2
    Join Date
    Dec 2008
    Posts
    22

    Default Re: MyBackup v3.0.4

    thanks a lot for this application

  3. #3
    Join Date
    Dec 2008
    Posts
    238

    Default Re: MyBackup v3.0.4

    great app. so easy to just *boom, copy contacts/sms/mms, etc., *boom connect to PC and *boom, copy entire SD card (or card sans .MP3s 'cause ya probably already have those).

  4. #4
    Join Date
    Nov 2008
    Posts
    26

    Default Re: MyBackup v3.0.4

    Thank you!

  5. #5
    Join Date
    Oct 2008
    Posts
    194

    Default Re: MyBackup v3.0.4

    you welcome..

  6. #6
    Join Date
    Nov 2008
    Posts
    38

    Default Re: MyBackup v3.0.4

    Thanks, it's great! I'm still hoping you add the ability for us to name our backups (so we can back up each thing to it's own file!) - that would be stellar. Being able to backup SMS to it's own file separate from something that doesn't change like Settings sure would come in handy. This would also allow us to easily keep multiple backups on the SD card (i.e. contacts_20081223.xml, contacts_20081224.xml, etc.) so we can "roll back" if needed...

    Any chance you have access to these apps' data to back them up?

    K-9 (K-9 Mail)
    ConnectBot
    DroidFTP
    StreamFurious

    Thanks for listening.

  7. #7
    Join Date
    Nov 2008
    Location
    Cuba, NY 14727
    Posts
    767

    Default Re: MyBackup v3.0.4

    Once backed up... is it possible to access this data on your pc? is there something out there that can interpret the data so it can be viewed. I need to put some text messages convo's online and want to know if it is possible to do it this way.
    Last edited by birdman81484; 12-23-2008 at 12:50 PM.

  8. #8
    Join Date
    Nov 2008
    Posts
    38

    Default Re: MyBackup v3.0.4

    Quote Originally Posted by birdman81484 View Post
    Once backed up... is it possible to access this data on your pc? is there something out there that can interpret the data so it can be viewed. I need to put some text messages convo's online and want to know if it is possible to do it his way.
    It's in SQLite "format" so to speak; you need to use the SQLite tools to access it like a database (using SELECT statements and so forth). Here's a little program someone made to browse the data (I've not used it):

    http://sqlitebrowser.sourceforge.net/

  9. #9
    Join Date
    Nov 2008
    Location
    Cuba, NY 14727
    Posts
    767

    Default Re: MyBackup v3.0.4

    Quote Originally Posted by rivviepop View Post
    It's in SQLite "format" so to speak; you need to use the SQLite tools to access it like a database (using SELECT statements and so forth). Here's a little program someone made to browse the data (I've not used it):

    http://sqlitebrowser.sourceforge.net/

    I got it up and running and i can view the data... just need to figure out how to easily copy it to a text file.

  10. #10
    Join Date
    Nov 2008
    Posts
    38

    Default Re: MyBackup v3.0.4


    Quote Originally Posted by birdman81484 View Post
    I got it up and running and i can view the data... just need to figure out how to easily copy it to a text file.
    Use the commandline tool that comes with the SQLite distribution called "sqlite3" (usually). Here's a sample, super simple session to save the output of the table "sms" to a text file, comma-delimited (done on Linux but it's the same on Windows or Mac):

    Code:
    $ sqlite3 358279012590087.xml
    SQLite version 3.5.9
    Enter ".help" for instructions
    sqlite> .mode csv
    sqlite> .output data.txt
    sqlite> select * from sms;
    sqlite> .quit
    See this page to download the tools (all platforms): http://sqlite.org/download.html

    Using that tool you can mine the databases in any way possible by creating SQL queries as complex as you need (joining tables for instance), or you can just do it like the above example and spit it out into files and manually connect the dots - your choice.

    Here's a SQL query that will cross reference the SMS data with the People and Phones data and spit out your SMS info that includes the person's name in your Contacts:

    Code:
    $ sqlite3 358279012590087.xml
    SQLite version 3.5.9
    Enter ".help" for instructions
    sqlite> .mode csv
    sqlite> .output smsconversations.csv
    sqlite> select people.name, sms.address, sms.thread_id, sms.body from people,sms,phones where people._id=phones.person and sms.address=phones.number;
    sqlite> .quit
    You can pretty much do any standard SQL query. Use ".tables" to see the table names, and ".schema <table_name>" to see the description of that table's columns. Put 'em together like Legos.

+ Reply to Thread
Page 1 of 5 123 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts