#754 - Logging output for bind log of UpdateQuery does not include bind values for set clause ...

This commit is contained in:
Robin Bygrave
2016-06-28 07:10:59 +12:00
parent 9a00b9df0e
commit 92474c2b24
@@ -72,6 +72,7 @@ public class OrmUpdateProperties {
@Override
public void bind(Binder binder, DataBind dataBind) throws SQLException {
binder.bindObject(dataBind, value);
dataBind.append(value).append(",");
}
}
@@ -105,6 +106,7 @@ public class OrmUpdateProperties {
public void bind(Binder binder, DataBind dataBind) throws SQLException {
for (Object val : bindValues) {
binder.bindObject(dataBind, val);
dataBind.append(val).append(",");
}
}
}