/**
	     * Execute delete using the current internal state as {@code WHERE} clause.
	     */
	    public int Delete(SQLiteDatabase db) {
	        AssertTable();
	        if (LOGV) Log.Verbose(TAG, "delete() " + this);
	        return db.Delete(mTable, GetSelection(), GetSelectionArgs());
	    }