为什么不执行while(rs.next)

publicList<One_collections>getCollections_news(intType,Stringtitle,Stringname,Stringa... public List<One_collections> getCollections_news(int Type, String title,
String name, String addDate) {
// TODO Auto-generated method stub
String sql = "select oc.ID,onn.title,oc.Type,od.name,oc.addDate "
+ " from one_collections oc,one_news onn,one_ddh od "
+ " where oc.ddhId=od.ID and oc.itemId=onn.Id and oc.Type="+Type
+" and onn.title like '%"+title+"%' and od.name='"+name+"' and oc.addDate>='"
+addDate+" 00:00:00' and oc.addDate<= '"+addDate+" 23:59:59'";
ResultSet rs = help.execQuery(sql);
List<One_collections> list = new ArrayList<One_collections>();
try {
System.out.println(sql);
if(rs==null){
System.out.println("null");
}else{
System.out.println("not null");
}
while (rs.next()) {
System.out.println("why?");
One_collections oc = new One_collections();
oc.setID(rs.getInt(1));
One_news onn = new One_news();
onn.setTitle(rs.getString(2));
oc.setOnn(onn);
oc.setType(rs.getInt(3));
One_ddh od = new One_ddh();
od.setName(rs.getString(4));
oc.setOd(od);
oc.setAddDate(rs.getString(5));
list.add(oc);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}
展开
 我来答
墨舞灵160
2014-06-20 · 超过71用户采纳过TA的回答
知道答主
回答量:128
采纳率:0%
帮助的人:172万
展开全部
因为rs.Next返回了false阿,就是说rs是空的
满意请采纳。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式