Re: [android-developers] Export Data from my app

2011-09-08 Thread ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ
*Copying your existing database seems like a simple solution.* Copying? just pick data row-row to a file? *I read about save to SD card, but I didn't underastand many things. For exaple did I need a key for the permission? Or just put a line of code in the manifest file?*

Re: [android-developers] Export Data from my app

2011-09-08 Thread TreKing
2011/9/8 ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ iouliag...@gmail.com *Copying your existing database seems like a simple solution.* Copying? just pick data row-row to a file? I don't know much about SQLite, but a file is a file so you should be able to do some standard read-from file-A-then-write-to-file-B

[android-developers] Export Data from my app

2011-09-07 Thread juliagrig
Hi all, I would like to know if and how could I export data from my app . I am using sqlite3 into my app, and I have one table with 7 fields. What kind of file is supported by android software? I read about save to SD card, but I didn't underastand many things. Please, give some links or ideas

Re: [android-developers] Export Data from my app

2011-09-07 Thread TreKing
On Wed, Sep 7, 2011 at 3:49 AM, juliagrig iouliag...@gmail.com wrote: I would like to know if and how could I export data from my app . If? Yes. How? Pick a format and write your data to that format. The specifics of this has nothing to do with Android. I am using sqlite3 into my app, and