JAVA错误:使用rs.next()提示"Unhandled exception type SQLException“
Posted on 2011-05-16 16:27 寒宵飞飞 阅读(5493) 评论(0) 编辑 收藏 举报使用rs.next()提示"Unhandled exception type SQLException"
两种解决方法,第一种:try{
while(rs.next())
{
System.out.println("id"+rs.getString(1));
System.out.println("name"+rs.getString(2));
}
}catch(Exception e)
{
}
用try,catch包含
第二种:throws SQLException一下
两种解决方法,第一种:try{
while(rs.next())
{
System.out.println("id"+rs.getString(1));
System.out.println("name"+rs.getString(2));
}
}catch(Exception e)
{
}
用try,catch包含
第二种:throws SQLException一下
本文转载自http://blog.sina.com.cn/s/blog_598e7a740100ay0q.html