[分享][经验]记录集中使用do..while
do..while这个句语已经N久没用过了,没想到今天却在操作记录集的时候用上了。原因如下:查询一个ID,这个ID如果不存在这张表中则给此对象初始化。因为用的是JBDC的连接方式,所以判断一个记录存不存在用到了if(rs.next()),如果按以前的方式就是直接用if(rs.next())来做,查到了就取,查不到初始化。就像这样:
if(rs.next()){
while(rs.next()){
......
}
}else{
初始化
}
但是由于if的时候记录集指针下移,所以查出的数据就会少一个。
因此改用do..while来处理。
希望大家不要忘了do..while的用处。。
/**
* get Adviser PI
* @param con
* @param pstmt
* @param rs
* @param adviserID
* @return
* @throws SQLException
*/
private List getAdviserAPI(Connection con,PreparedStatement pstmt,ResultSet rs,String adviserID) throws DataException{
List piontInfoTOApi = new ArrayList();
try
{
pstmt = con.prepareStatement(SystemConstants.SQL_SEL_AGENTS_PERFORMANCE_API);
pstmt.setString(1,adviserID);
rs = pstmt.executeQuery();
if(rs.next()){
do{
PointInfoTO pointInfoTO = new PointInfoTO();
pointInfoTO.setYApi(rs.getString(\"ANNUALISED_PREMIUM\"));
piontInfoTOApi.add(pointInfoTO);
} while (rs.next());
}else{
PointInfoTO pointInfoTO = new PointInfoTO();
pointInfoTO.setYApi(SystemConstants.DEFAULT_VAR_ZERO);
piontInfoTOApi.add(pointInfoTO);
}
}
catch (SQLException e)
{
throw new DataException();
}
return piontInfoTOApi;
}
[此贴子已经被作者于2007-3-30 13:09:17编辑过]