Exception in thread "main" java.sql.SQLException: 用尽的 Resultset

日期:2009-07-26 09:30:08 人气:2

Exception in thread "main" java.sql.SQLException: 用尽的 Resultset

while(rs.next());不要用分号 System.out.println(rs.getString("deptno"));这一句是while的内容,建议使用{}括起来. 像你这样子已经打印指定的行内容,就无需用WHILE语句了,边NEXT()都不用. 正确写法: while(rs.next()) { System.out.println(rs.getString("deptno")); } 还有,连接数据库,最好用个单独的方法是完成
    A+
热门评论