I’m using a db4oHelper in the main activity without problem but when i want use de db in a class without context I’ve problems.. This class doesn’t extends of Activity..
public void actualizatrat(Context context){
dbHelper();
db4oHelper.deleteAll();
//...
}
private Db4oHelper dbHelper() {
if (db4oHelper == null) {
db4oHelper = new Db4oHelper(this);
db4oHelper.db();
}
return db4oHelper;
}
the constructor db4oHelper:
public Db4oHelper(Context ctx)
{
context = ctx;
}
Eclipse shows the error: The constructor Db4oHelper(Actualiza) is undefined
can someone please help me?
While the class you want to have access to the helper may not be a
Contextitself, you likely created it from one of the above components that does, so just pass theContextyou have forward.