Skip to content

Commit 2cb12c7

Browse files
authored
Code issue
Code issue
1 parent 765b84a commit 2cb12c7

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
@@ -212,7 +212,7 @@ public static UpdateRowResponse updateRow(SQLiteDatabase db, String tableName, L
212212
if (whereClause == null) {
213213
whereClause = rowDataRequest.title + "=? ";
214214
} else {
215-
whereClause = "and " + rowDataRequest.title + "=? ";
215+
whereClause = whereClause + "and " + rowDataRequest.title + "=? ";
216216
}
217217
whereArgsList.add(rowDataRequest.value);
218218
} else {

0 commit comments

Comments
 (0)