私のデータベース アダプタ クラスには、次のようなメソッドが多数あります。
public long getContactId(final String phoneNumber) throws SQLException {
final Cursor cur = mDb.rawQuery(
"select contact_id from contactphones where number=? limit 1;",
new String[] { phoneNumber });
return cur.moveToFirst() ? cur.getLong(0) : -1;
}
そのような方法の簡潔さに感謝します。しかし、私は Cursor.close() を呼び出していません。それが問題かどうかはわかりません。Cursor は閉じられ、そのリソースは Cursor.finalize() で解放されますか? それ以外の場合は、次のことを行う必要があります。
public long getContactId(final String phoneNumber) throws SQLException {
final Cursor cur = mDb.rawQuery(
"select contact_id from contactphones where number=? limit 1;",
new String[] { phoneNumber });
final boolean retVal = cur.moveToFirst() ? cur.getLong(0) : -1;
cur.close();
return retVal;
}