首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

ResultSet有关问题

2012-03-30 
ResultSet问题知道怎么把ResultSet返回值rs放到二维表Linkedlist中嘛最好有代码[解决办法]while(rs.next()

ResultSet问题
知道怎么把ResultSet返回值rs放到二维表Linkedlist中嘛   最好有代码

[解决办法]
while(rs.next())
{
Object obj = rs.getObject(index);
LinkedList.add(obj);
}
[解决办法]
楼上正解
[解决办法]
hyxkangta123() ( ) 信誉:100 Blog 2007-02-15 15:47:52 得分: 0


我想把整个表放到Linkedlist中 add得时候不需要index get时候再根据需要获取 就像ResultSet那样!

-----------------------------------------------

像ResultSet哪样?
ResultSet取出有两种方式,一种是根据index,这种方式的话用一楼的方式就可以了。
还有一种是根据字段名,这样的话,linkedlist就不行了,得用linkedhashmap
[解决办法]
楼上的正解,赞同!

热点排行