Reputation: 3574
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
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
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