Searched refs:planCursor (Results 1 – 1 of 1) sorted by relevance
220 final Cursor planCursor = db.rawQuery("explain query plan " + sql, queryArgs); in explainQueryPlan() local222 if (planCursor != null && planCursor.moveToFirst()) { in explainQueryPlan()223 final int detailColumn = planCursor.getColumnIndex("detail"); in explainQueryPlan()226 sb.append(planCursor.getString(detailColumn)); in explainQueryPlan()228 } while (planCursor.moveToNext()); in explainQueryPlan()238 if (planCursor != null) { in explainQueryPlan()239 planCursor.close(); in explainQueryPlan()