摘要: //通用的增删改操作 public int update(Connection conn, String sql, Object...args) { PreparedStatement ps = null; try { ps = conn.prepareStatement(sql); for (in 阅读全文
posted @ 2020-11-20 13:59 Gazikel 阅读(46) 评论(0) 推荐(0)