Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to update the application's databases after copy the new databases file in to it

  1. My Email application is running at first
  2. And then click a button, it will copy the databases file from sdcard to /data/data
  3. after finish to copy the databases file, how to enable the application use the new databases file?
share|improve this question

closed as not constructive by JoxTraex, Octavian Damiean, Bill the Lizard Mar 3 at 14:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I've never copied a database from the sdcard to the /data/data folder, but I would imagine that in order to use the database, you just need to create an instance of a DatabaseHelper with the name of the database. Here's a skeleton version of my DatabaseHelper. You'd need to edit the DATABASE_NAME constant and set it to the name of the database you copied.

public class DatabaseHelper extends SQLiteOpenHelper
{
    private Context context = null;
    private static final String DATABASE_NAME = "yourdbname.db";
    private static final int DATABASE_VERSION = 1;

    public DatabaseHelper(Context c)
    {
        super(c, DATABASE_NAME, null, DATABASE_VERSION);
        context = c;
    }

    @Override
    public void onCreate(SQLiteDatabase db)
    {
        ...
    }


    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
    {
        ...
    }
    ...
}
share|improve this answer

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