需要幫助刪除行,我有下面這段代碼: Dim LRAS, matchFoundIndex, iCntr As Long
LRAS = ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Row
For iCntr = 3 To LRAS
If Cells(iCntr, 1) <> "" Then
matchFound
這裏是我的代碼 public void deleteNote(String tv){
SQLiteDatabase db = this.getWritableDatabase();
db.execSQL("DELETE FROM TBT WHERE name='" + tv +"'");
db.close();
}
圖片: