私はこの質問がSOで何度も尋ねられたことを知っていますが、私は私の正確な問題を理解することができませんでした。
次のコードを使用して、データベース(Table1)からデータを取得し、取得値に基づいて別のTable2を更新しています。一部のAndroidバージョンでは正常に動作しますが、Android4.0.3でテストしたところです。私はこれjava.lang.IllegalStateException:?.attempt to re-open an already-closed object
をで取得していsum_cursor.moveToNext();
ます。
このコードをAsyncTaskで使用しています。
/** Sum of total matched values*/
Cursor sum_cursor = db.gettotalMatchvalue(this);
if(sum_cursor!=null)
{
sum_cursor.moveToFirst();
for(int j=0; j<sum_cursor.getCount();j++)
{
float totalmatchedscore = sum_cursor.getInt(0);
float totalingredients = Float.parseFloat(sum_cursor.getString(sum_cursor.getColumnIndex(APPDatabase.CK_TOTALINCREDIENTS)));
/**average = totalscore/totalingredients*/
double average = totalmatchedscore/totalingredients;
int id = Integer.parseInt(sum_cursor.getString(sum_cursor.getColumnIndex(APPDatabase.CK_ID)));
db.updateAverage(id, average);
sum_cursor.moveToNext(); //Here is the problem
}
}
db.close();
私の更新メソッドのコーディング
/** Update average */
public void updateAverage(int id,double average)
{
SQLiteDatabase db = getWritableDatabase();
ContentValues values = new ContentValues();
values.put(CK_FINALVALUE,average);
db.update(TABLE, values,CK_ID+" = "+id , null);
}
私はここで何を間違っていますか?
私はあなたの多くがこの状況に遭遇することを知っています。みんな助けてくれませんか。
ご協力いただきありがとうございます。