我有表员工
我将列检索为 select emp_name,emp_add from employee
while(iResultSet1.next())
{
List expRptColWise = new ArrayList();
for(Integer i=1;i<=iResultSet1.getMetaData().getColumnCount();i++){
expRptColWise.add(iResultSet1.getString(i));
}
expRptRowWise.add(expRptColWise);
有了上面的片段,我得到
emp_name | emp_add |
A | add1 |
B | add2 |
我想在结果集中添加序列号列,以便我得到结果
emp_name | emp_add |Sr_No|
A | add1 |1 |
B | add2 |2 |
请指导我如何在结果集或集合对象中动态添加列,这里我使用了 ArrayList。