java批量更新小记录
    
- ?public?void?addEmployees(Connection?conn,?List<Employee>?empList,?int?batchSize)??
 
- ????????????throws?SQLException?{??
 
- ????????long?bt?=?System.currentTimeMillis();??
 
- ????????PreparedStatement?stmt?=?null;??
 
- ????????try?{??
 
- ????????????String?sql?=?SqlParser.getInstance().getSql("Employee.insert");??
 
- ???????????