Description I have used the code tip from http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ to copy a pre-filled data file to the target and handled this in a asynch task

Problem : On starting the application it gives error and shuts down first time, starting again without any change it works perfectly fine. So first time after the file is copied, the error comes but after that no issues. Please help

Code attached:..

private class CopyDatabase extends AsyncTask<String, Void, Boolean> {
    private final ProgressDialog dialog = new ProgressDialog(BabyNames.this);
    protected void onPreExecute() {
        this.dialog.setMessage("Loading...");
        this.dialog.show();
    }

    @Override
    protected Boolean doInBackground(String... params) {
        // TODO Auto-generated method stub
        try {
            namesDBSQLHelper.createDatabase();
            return null;
        } catch(IOException ioe){
            ioe.printStackTrace();
        }
        return null;

    }

    protected void onPostExecute(final Boolean success){
        if (this.dialog.isShowing()){
            this.dialog.dismiss();
        }
    }
}
link|improve this question
1  
What error do you see first time in your Log Cat? – Pentium10 Jun 2 '10 at 7:20
How/when are you invoking your asynctask? I'm guessing it's running before the context is fully initialized (which is required to initialize the db in your namesDBSQLHelper.createDatabase() method). This would happen if for example you start this task in an activity's constructor instead of onCreate() – Ricardo Villamil Jun 2 '10 at 18:00
@ Ricardo : The code attached is called in an activity class and is called in onCreate() method, .... * public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); namesDBSQLHelper = new NamesDataSQLHelper(this); new CopyDatabase().execute(); * So, I am not calling it through the constructor. @Pentium10: The Logcat details of error are: 06-03 18:34:53.056: ERROR/AndroidRuntime(217): Java.lang.IllegalStateException: Could not execute method of the activity 06-03 18:34:53.056: ERROR/AndroidRuntime(217 – Thinkcomplete Jun 3 '10 at 13:09
06-03 18:34:53.056: ERROR/AndroidRuntime(217): java.lang.IllegalStateException: Could not execute method of the activity 06-03 18:34:53.056: ERROR/AndroidRuntime(217): at android.view.View$1.onClick(View.java:2031) 06-03 18:34:53.056: ERROR/AndroidRuntime(217): at android.view.View.performClick(View.java:2364) 06-03 18:34:53.056: ERROR/AndroidRuntime(217): at android.view.View.onTouchEvent(View.java:4179) 06-03 18:34:53.056: ERROR/AndroidRuntime(217): at android.widget.TextView.onTouchEvent(TextView.java:6532) 06-03 18:34:53.056: ERROR/AndroidRuntime(217): at android.view. – Thinkcomplete Jun 3 '10 at 13:10
Huh this sounds complicate. Can you post the launch section of the Activity. There is something going wrong when you click on a view. – Pentium10 Jun 3 '10 at 13:24
show 4 more comments
feedback

1 Answer

Try copying database by this way.It looks same as the answer of the link provided by you but it has some difference. Database not copying from assets

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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