Prabhu M
Prabhu M

Reputation: 3574

Creating database in sdcard

Is it possible to create the database in sdcard. If possible please tell m some tutorials. I know how to create database locally. I am searching in internet, but I am not getting proper tutorials.

Upvotes: 4

Views: 3407

Answers (2)

Otra
Otra

Reputation: 8158

This might help out.

http://www.anddev.org/creating_database_on_sdcard_-t7817.html

Take a look at all the responses, especially the third oneThe method of interest is SQLiteDatabase.openOrCreateDatabase(dbFile, null);

Upvotes: 0

Barry Fruitman
Barry Fruitman

Reputation: 12656

SQLiteDatabase.openOrCreateDatabase(String path, SQLiteDatabase.CursorFactory factory) will create a database in any folder you like (and have permission to write in).

Barry

Upvotes: 8

Related Questions