"There is no default constructor available in android.database.sqlite.SQLitepenhelper" in Android Studio
Asked Answered
C

2

10

Trying to extend class with SQLiteOpenHelper, but this error shows up : "There is no default constructor available in android.database.sqlite.SQLitepenhelper" along with other "cannot resolve symbol Category, Note,..."

class DbHelper extends SQLiteOpenHelper {


    @Override
    public void onCreate(SQLiteDatabase db) {

        db.execSQL(Category.getSql());
        db.execSQL(Note.getSql());
        db.execSQL(Attachment.getSql());
        db.execSQL(CheckItem.getSql());
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS " + Category.TABLE_NAME);
       db.execSQL("DROP TABLE IF EXISTS " + Note.TABLE_NAME);
        db.execSQL("DROP TABLE IF EXISTS " + Attachment.TABLE_NAME);
        db.execSQL("DROP TABLE IF EXISTS " + CheckItem.TABLE_NAME);

        onCreate(db);
    }
Claqueur answered 27/12, 2014 at 13:57 Comment(0)
K
16

You need to define an explicit constructor yourself that calls the 4- or 5-arg super constructor in SQLiteOpenHelper.

For example:

public DbHelper(Context context) {
    super(context, "database.db", null, 1);
}

where database.db is your database file name and 1 is the version.

Knout answered 27/12, 2014 at 14:1 Comment(1)
I had the same question about the WebView class, but this answered my question anyways. Thanks!Stride
S
2

If your DBHelper child then this post help, othervise you can allready understandfirst Define it like this one in outside of you class, means uperside...

private DBHelper ourHelper;
private final Context ourContext;

Then use this

class DbHelper extends SQLiteOpenHelper {
public DBHelper(Context context) {
        super(context, DB_NAME, null, DB_VIRSION);
        // TODO Auto-generated constructor stub
    }

@Override
public void onCreate(SQLiteDatabase db) {

    db.execSQL(Category.getSql());
    db.execSQL(Note.getSql());
    db.execSQL(Attachment.getSql());
    db.execSQL(CheckItem.getSql());
}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    db.execSQL("DROP TABLE IF EXISTS " + Category.TABLE_NAME);
   db.execSQL("DROP TABLE IF EXISTS " + Note.TABLE_NAME);
    db.execSQL("DROP TABLE IF EXISTS " + Attachment.TABLE_NAME);
    db.execSQL("DROP TABLE IF EXISTS " + CheckItem.TABLE_NAME);

    onCreate(db);
}

And then try this context for your parent class

public MyDatabase(Context c){
    ourContext=c;
}
Shortstop answered 27/12, 2014 at 14:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.