com.microsoft.sqlserver.jdbc.SQLServerException: 結果集沒有當前行,結果集已耗盡

來源:互聯網
上載者:User

com.microsoft.sqlserver.jdbc.SQLServerException: 結果集沒有當前行,結果集已耗盡
參考部落格com.microsoft.sqlserver.jdbc.SQLServerException: 結果集沒有當前行

java擷取結果集,if(rs!=null),和while(rs.next())區別 

  1. com.microsoft.sqlserver.jdbc.SQLServerException: 結果集沒有當前行。  
  2. st = conn.createStatement();  
  3. ResultSet rs = st.executeQuery(sql);  
  4. if(rs!=null) {//rs.next();  報錯
  5. System.out.println(rs.getRow());  
  6. System.out.println(rs.getString("name"));  
  7.       
  8. }  
  9. st = conn.createStatement();  
  10. ResultSet rs = st.executeQuery(sql);  
  11. while(rs.next()) {//rs.next();  OK
  12. System.out.println(rs.getRow());  
  13. System.out.println(rs.getString("name"));  
  14.       
  15. }  
 

原因:結果集rs的位置初始時位於第一條記錄的前面,即為0。所以當用if來判斷時,會出現結果集當前行為空白。

這是ResultSet指向的問題,ResultSet取值後,指標預設指向index為-1的前一個元素,

即ResultSet中第一個元素的前面,這時指標預設指向是不存在元素的,因此出現錯誤。必須調用.next()函數才能,對ResultSet進行遍曆。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.