请问 jfinal
int update(Config config, Connection conn, String sql, Object... paras) throws SQLException {
PreparedStatement pst = conn.prepareStatement(sql);
config.dialect.fillStatement(pst, paras);
int result = pst.executeUpdate();
DbKit.close(pst);
return result;
}
为什么到了int result = pst.executeUpdate(); 这一步 数据库已经更新成功了,但是就是没有继续走下去,线程到这个地步就停了
项目:JFinal