有两个可能
1、rs ,state和conn没有关闭
rs.close(); state.close(); conn.close();
if(rs!=null) rs.close; if(state!=null) state.close; if(conn!=null) conn.close;
---
流程
import java.sql.Connection;
Connection conn = null;
try {
conn = getConnection();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
} finally {
closeConnection(conn); // 关闭连接
}
2、执行的数据库查询没有查询到任何结果,却调用了rs.next() 或者,游标到了查询出来的最后一条记录,又调用了rs.next()则,会找不到next条记录
String swglm_hou = rs_select2.getString(1);
我是这一行报错,而且是执行到循环的最后一次循环才报的错