この男ケビンは伝説です:http://touchlabblog.tumblr.com/post/24474750219/single-sqlite-connection。どうもありがとう。
そのリンクで、彼は途方もなく単純な解決策を共有しています:
public class DatabaseHelper extends OrmLiteSqliteOpenHelper {
private static DatabaseHelper instance;
public static synchronized DatabaseHelper getHelper(Context context)
{
if (instance == null)
instance = new DatabaseHelper(context);
return instance;
}
//Other stuff...
}
次に、SQLiteクラスで、コードを次のように変更しました。
public BlacklistWordDataSource(Context context) {
dbHelper = MySQLiteHelper.getHelper(context);
}