close the connection
やのようなものがたくさん見つかりましclose the cursor
たが、私はこれらすべてを行います。それでも SQLite 接続がリークし、次のような警告が表示されます。
A SQLiteConnection object for database was leaked!
これは、次のコードを使用してアクティビティで呼び出すデータベースマネージャーです。
DatabaseManager dbm = new DatabaseManager(this);
データベース マネージャー クラスのコードは次のようになります。
public class DatabaseManager {
private static final int DATABASE_VERSION = 9;
private static final String DATABASE_NAME = "MyApp";
private Context context = null;
private DatabaseHelper dbHelper = null;
private SQLiteDatabase db = null;
public static class DatabaseHelper extends SQLiteOpenHelper {
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
//create database tables
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
//destroy and recreate them
}
}
public DatabaseManager(Context ctx) {
this.context = ctx;
}
private DatabaseManager open() throws SQLException {
dbHelper = new DatabaseHelper(context);
db = dbHelper.getWritableDatabase();
if (!db.isReadOnly()) {
db.execSQL("PRAGMA foreign_keys = ON;");
}
return this;
}
private void close() {
dbHelper.close();
}
}
データベース メソッドを呼び出すときは、次のことを行います。
public Object getData() {
open();
//... database operations take place ...
close();
return data;
}
しかし、私が言ったように、私はまだこの SQLite 接続がリークされているという警告を受け取ります。
私は何を間違っていますか?