Is there a way to directly access the sqlite database from the assets folder, or is it always necessary to first copy this db to the device data directory, in the app's database folder?

(Example - Environment.getDataDirectory()+"/data/com.example.myapp/databases/myDb.db")

I ask because I have a db that is quite large (about 11MB) and has to be shipped with the app. After the database has been copied to the data directory, the app will take twice the space. I want to avoid this.

Also, is it possible to delete the contents of the asset folder after the app has been installed? This would help save some space.

Thanks

link|improve this question

do you know where the (currently) database save? tell me. – Dr.nik Jul 8 '11 at 5:40
feedback

2 Answers

assets folder is a compile time folder. You cannot access without copying in your linux

link|improve this answer
feedback

yes you can delete the files from the database from the assets folder : you can use "android.resource://"+getPackageName() + "/" to access the folder and then use

File f=new File(_pathToAssestFolder,databasename);
        if(f.exists())
        {f.delete();
        }

but do it in the last line of onCreate() function;

try it

link|improve this answer
as far as I understand the APK is a signed zip file that cannot be modified. Take a look at: stackoverflow.com/questions/4398523/… – Sergio Jan 18 at 15:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.