Skip to content

Commit 765b84a

Browse files
authored
Code Issue
Code Issue
1 parent f6eabc3 commit 765b84a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

debug-db/src/main/java/com/amitshekhar/utils/DatabaseHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public static UpdateRowResponse deleteRow(SQLiteDatabase db, String tableName, L
264264
if (whereClause == null) {
265265
whereClause = rowDataRequest.title + "=? ";
266266
} else {
267-
whereClause = "and " + rowDataRequest.title + "=? ";
267+
whereClause = whereClause + "and " + rowDataRequest.title + "=? ";
268268
}
269269
whereArgsList.add(rowDataRequest.value);
270270
}

0 commit comments

Comments
 (0)