i want to create my sqlite database in sdcard instead of default path...i want to access all my data from sdcard also I have Used This Code:
priv
Just give path in constructor ;
DatabaseHelper(Context context) { super(context, Environment.getExternalStorageDirectory() + File.separator + "/DataBase/" + File.separator + DB_NAME, null, DB_VERSION); }