scott gellock wrote: > Hello, > > I have a app in development. It write data to a SQLite database. I've > tested the app on my NexusOne over the weekend and have a bunch of data > now in the database. I'd like to copy the database off of the phone and > onto my dev machine. > > I've tried to use adb pull <path to mydatabase> <path to my local > machine> but it gives me a Permission Denied error.
You cannot access those sorts of locations on a production device, only on the emulator or a rooted device. One option is to add a temporary menu choice somewhere in your app to copy the database file to the SD card, and you can pull it from there. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- 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 To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

