Jags wrote: > I am using sqlite db in my app. i am able to create db and table and > execute queries. But I wanted to know where is the sqlitedb created, > so that I can check them from commandine. > where doed that android store ? I searched, could not find anything on > that name in my pc, does android encrypt the name of the db file ?
SQLite databases created on a device are stored on the device. SQLite databases created in an emulator are stored in the emulator. In both cases, they are stored in: /data/data/your.package.name/databases (where your.package.name is the package you declared in your AndroidManifest.xml file) The only SQLite databases on your PC would be ones you created outside of Android. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting/App Development: http://commonsware.com/consulting -- 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

