Reputation: 381
When I create an SQlite Database I dont find it in resources of my android project so I want to locolize it in my hard disk , and how to proceed to open it ?
Upvotes: 1
Views: 257
Reputation: 73
You have to do some selection from your database to see all records here is a tutorial that can help you
Upvotes: 0
Reputation: 15847
You can't
directly save your database into harddisk
But you can create database in sdcard
then copy that database from sdcard to your harddisk.
Then you can access that database using SQLite Database browser
Upvotes: 1