On Fri, Sep 3, 2010 at 1:16 PM, dcrossmier <[email protected]> wrote: > The quick question: Where is my SQL Lite database stored on a device?
getDatabasePath() will give you the path at runtime. >From the standpoint of using DDMS to examine the emulator, it is: /data/data/your.package.here/databases/whateveryoucalledit.db (where your.package.here is the package name in your manifest) > My application uses a SQL Lite DB correctly, but I want to extract my > data (database) from the device for post-processing. If by "device" you mean "emulator", that sounds fine. You cannot access /data on a non-rooted device, though. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.1 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

