PreparedStatement pstmtD = connD.prepareStatement(sql);
for(..;..;..){
pstmtD.setString(i + 1, strTime);
pstmtD.addBatch();
}
pstmtD.executeBatch();写的是这样的批处理  想知道这个怎么获得取到的数据?并存入list中?