On Wed, Aug 10, 2011 at 1:40 PM, Duygu Kahraman <[email protected]> wrote: > one of my app i want to use sqllite.I create database but when DEVİCE > CONNECT to pc, i cant see my database because data directory couldn > open. > > /data/data/your.package.here/databases just work emulator.How can i > see my database when device connected.
You can't on an unmodified production device. Add a feature to your app to back up your database to external storage -- just close your database objects and copy the file. You can then use this for examining the database. Or, do your testing that needs access to the database on an emulator. Or, root your phone. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- 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

