Skip to content

Commit

Permalink
Fix issue where batch update would not work anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
GenieTim committed Nov 24, 2023
1 parent 350c01e commit 03d2548
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private JComboBox getFieldSelectionJComboBox() {

private void doApplyChange() {
String fieldName = ((UpdateableField) this.getFieldSelectionJComboBox().getSelectedItem()).getDatabaseDescription();
String conditionQuery = "WHERE " + fieldName + " LIKE :fromValue AND (s.nahimaExported = 0 OR s.nahimaExported IS NULL)";
String conditionQuery = "WHERE " + fieldName + " LIKE :fromValue AND (s.nahimaExported = FALSE OR s.nahimaExported IS NULL)";

Session session;
try {
Expand Down

0 comments on commit 03d2548

Please sign in to comment.