0

I try to get the sqlite file of my android database. Do I have to generate it, or can i find it in a specific folder on my device? I work with a SAMSUNG Nexus 7 tablet.

Thanks in advance

Manfred Moser
  • 29,539
  • 13
  • 92
  • 123
Ben
  • 501
  • 6
  • 20
  • No u cant see it but you can export sqlite file in Sdcard. – M D Apr 08 '14 at 13:03
  • It's the matter, it's no SD card in nexus tablet – Ben Apr 08 '14 at 13:15
  • If your phone has no SDcard then Export DB into Phone Memory – M D Apr 08 '14 at 13:18
  • I'am beginner with android, could you give me a link or a tips to do it please? Thanks for your help – Ben Apr 08 '14 at 13:23
  • Go to this [http://stackoverflow.com/questions/16537145/import-export-to-android-sqlite-database](http://stackoverflow.com/questions/16537145/import-export-to-android-sqlite-database) – M D Apr 08 '14 at 13:26

1 Answers1

0

normally the database file is stored here data/data/package/databases you can use eclipse DB view to show it, what i do normally is copying this file from the package above programmatically into an assets folder,

check my answer here to do that

Community
  • 1
  • 1
mmoghrabi
  • 1,233
  • 1
  • 14
  • 23
  • No, you *cannot* use eclipse to see this unless you are running on an emulator or an engineering device where adbd runs as root, or your program modifies the permissions of its file. – Chris Stratton Apr 08 '14 at 13:41