Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a class to handle all my SQLite DB access for me.

Here is the source:

package za.co.myapps.testingdb;

import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public class DBHelper {
    private static final String DATABASE_NAME = "SampleCollector";
    private static final int DATABASE_VERSION = 1;
    static SQLiteDatabase db;

    public DBHelper (Context context) {
        myDBHelper openHelper = new myDBHelper(context);

        DBHelper.db = openHelper.getWritableDatabase();
    }

    private class myDBHelper extends SQLiteOpenHelper {

        myDBHelper (Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);

        }

        @Override
        public void onCreate(SQLiteDatabase db) {
            db.execSQL("CREATE TABLE IF NOT EXISTS TestTable(_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT);");
        }

        @Override
        public void onUpgrade (SQLiteDatabase db, int a, int b){
            db.execSQL("DROP TABLE IF EXISTS TestTable");
            onCreate(db);
        }
    }

}

When I create an instance of the DBHelper class in my starting activity I get an error that states : unable to open database file

What am I doing wrong?

share|improve this question
1  
Post full stacktrace. – Nambari Mar 1 '12 at 22:10
I am very new to android and java developement. How do I get the stack trace? – ReSpRoG Mar 1 '12 at 22:24
Got the problem solved by uninstalling the application from the emulator and running it again from eclipse – ReSpRoG Mar 1 '12 at 22:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.