This commit is contained in:
dingshaocheng 2019-02-19 20:10:34 +08:00 committed by 吴晟 Wu Sheng
parent b4eb06e1fb
commit 2a14097342
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class PreparedStatementWrapper extends StatementWrapper implements Prepar
@Override public boolean execute() throws SQLException {
return TracingUtils.trace(connectionInfo, "execute", sql, stateType, new TracingUtils.Executable<Boolean>() {
@Override public Boolean exe(String sql) throws SQLException {
return statement.execute(sql);
return statement.execute();
}
});
}