DBHelper db =new DBHelper(context);
Cursor result = db.weeklyMedicinesTaken();
//WeeklyMedicinesTaken is a function in DBHelper class which returns cursor containing an integer value.
startManagingCursor(result); //this function is a resistance in what i want to do.
while(result.moveToNext())
{
int count=result.getInt(0);
}
result.close();
实际上我有简单的类(非活动类),我想在其中从 sqlite 检索数据并对数据进行一些处理和评估。但问题是上面的代码在活动中工作正常,但在任何非活动类中都不起作用或在活动的任何静态函数中,以便我可以从任何类调用该函数。
请问有什么建议吗??