Angelika
Angelika

Reputation: 381

How to specify the location of SQlite database android?

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

Answers (2)

Angelika
Angelika

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

MAC
MAC

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

Related Questions