Im a bit confused about which operations have to be executed in background thread:
Cursor curserU = myDataBase.rawQuery("some query");
startManagingCursor(curserU);
curserU.moveToFirst();
curserU.someFuctionWhichWillReturnData();
is it enough if only this line runs in background:
Cursor curserU = myDataBase.rawQuery("some query");
or does everything have to beinbackground?