This commit is contained in:
zyyang 2020-12-14 22:29:05 +08:00
parent ed4ff8c208
commit be5b4659de
1 changed files with 3 additions and 4 deletions

View File

@ -122,10 +122,9 @@ public class SubTableService extends AbstractService {
// .getBoundSql(subTableValues)
// .getSql();
String sql = sql(subTableValues);
logger.info(">>> SQL : " + sql);
// statement = connection.createStatement();
// affectRows = statement.executeUpdate(sql);
statement = connection.createStatement();
affectRows = statement.executeUpdate(sql);
} catch (SQLException e) {
e.printStackTrace();
} finally {