MyEclipse中提示错误"The method isClosed() is undefined for the type ResultSet"怎么解决
代码protectedvoidcloseAll(Connectionconnection,Statementstatement,ResultSetresultSet){t...
代码
protected void closeAll(Connection connection, Statement statement, ResultSet resultSet) {
try {
if (resultSet != null && !resultSet.isClosed()) {
resultSet.close();
}
if (statement != null && !statement.isClosed()){
statement.close();
}
if (connection != null && !connection.isClosed()) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
} 展开
protected void closeAll(Connection connection, Statement statement, ResultSet resultSet) {
try {
if (resultSet != null && !resultSet.isClosed()) {
resultSet.close();
}
if (statement != null && !statement.isClosed()){
statement.close();
}
if (connection != null && !connection.isClosed()) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
} 展开
2024-03-15
展开全部
导错包了可能。你看看导的是不是java.sql.ResultSet;,不是那就导错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是写的很清楚吗。isClosed()方法没有定义成ResultSet类型。再看看你的isClose方法
追问
那怎么定义成ResultSet类型呢
这个方法不能和.close那样直接调用的吗
追答
.close方法应该是API里面定义好的方法,可以直接调用。而这个isClosed方法是你自己写的吧?不明白你这个方法是干嘛用的?resultset好像是一结果集,不存在关闭不关闭的。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询