2

正如我在标题中开始的那样,当我在我的 java 应用程序中查询用户数据时,我收到以下消息:"Operation not allowed after ResultSet closed"

我知道如果您尝试同时打开更多结果集,就会发生这种情况。

这是我当前的代码:

应用程序调用 getProject("..."),其他 2 个方法只是为了寻求帮助。我正在使用 2 个类,因为代码更多,这只是我得到的异常示例之一。

请注意,为了更好地理解,我已经翻译了变量名等,希望我没有遗漏任何内容。

/* Class which reads project data */

public Project getProject(String name) {
    ResultSet result = null;
    try {
        // executing query for project data
        // SELECT * FROM Project WHERE name=name
        result = statement.executeQuery(generateSelect(tProject.tableName,
                "*", tProject.name, name));
        // if cursor can't move to first place,
        // that means that project was not found
        if (!result.first())
            return null;
        return user.usersInProject(new Project(result.getInt(1), result
                .getString(2)));
    } catch (SQLException e) {
        e.printStackTrace();
        return null;
    } catch (BadAttributeValueExpException e) {
        e.printStackTrace();
        return null;
    } finally {
        // closing the ResultSet
        try {
            if (result != null)
                result.close();
        } catch (SQLException e) {
        }
    }
}

/* End of class */

/* Class which reads user data */

public Project usersInProject(Project p) {
    ResultSet result = null;
    try {
        // executing query for users in project
        // SELECT ID_User FROM Project_User WHERE ID_Project=p.getID()
        result = statement.executeQuery(generateSelect(
                tProject_User.tableName, tProject_User.id_user,
                tProject_User.id_project, String.valueOf(p.getID())));

        ArrayList<User> alUsers = new ArrayList<User>();
        // looping through all results and adding them to array
        while (result.next()) { // here java gets ResultSet closed exception
            int id = result.getInt(1);
            if (id > 0)
                alUsers.add(getUser(id));
        }
        // if no user data was read, project from parameter is returned
        // without any new user data
        if (alUsers.size() == 0)
            return p;
        // array of users is added to the object,
        // then whole object is returned
        p.addUsers(alUsers.toArray(new User[alUsers.size()]));
        return p;
    } catch (SQLException e) {
        e.printStackTrace();
        return p;
    } finally {
        // closing the ResultSet
        try {
            if (result != null)
                result.close();
        } catch (SQLException e) {
        }
    }
}

public User getUser(int id) {
    ResultSet result = null;
    try {
        // executing query for user:
        // SELECT * FROM User WHERE ID=id
        result = statement.executeQuery(generateSelect(tUser.tableName,
                "*", tUser.id, String.valueOf(id)));
        if (!result.first())
            return null;
        // new user is constructed (ID, username, email, password)
        User usr = new user(result.getInt(1), result.getString(2),
                result.getString(3), result.getString(4));
        return usr;
    } catch (SQLException e) {
        e.printStackTrace();
        return null;
    } catch (BadAttributeValueExpException e) {
        e.printStackTrace();
        return null;
    } finally {
        // closing the ResultSet
        try {
            if (result != null)
                result.close();
        } catch (SQLException e) {
        }
    }
}

/* End of class */

两个类的语句都添加到构造函数中,在构造每个类时调用 connection.getStatement()。

tProject 和 tProject_User 是我的枚举,我使用它来简化名称处理。generateSelect 是我的方法,应该可以按预期工作。我之所以使用它,是因为在我编写了大部分代码之后,我发现了准备好的语句,所以我保持原样。

我正在使用最新的 java MySQL 连接器(5.1.21)。

我不知道还能尝试什么。任何建议将被认真考虑。

4

2 回答 2

5

在没有看到您的代码的情况下,真的不可能明确地说出了什么问题。但是请注意,在许多情况下 aResultSet自动为您关闭。引用官方文档

当生成它的 Statement 对象关闭、重新执行或用于从多个结果序列中检索下一个结果时,ResultSet 对象将自动关闭。

可能你已经发生了其中一件事情。ResultSet或者你在实际完成之前明确地关闭了某个地方。

另外,您是否考虑过使用像 Hibernate 这样的 ORM 框架?一般来说,使用这样的东西比使用低级 JDBC API 更愉快。

于 2012-09-09T00:24:14.667 回答
5

引用@aroth 的回答:

在很多情况下,aResultSet会自动为您关闭。引用官方文档: http ://docs.oracle.com/javase/6/docs/api/java/sql/ResultSet.html

A ResultSet object is automatically closed when the Statement object that generated 
it is closed, re-executed, or used to retrieve the next result from a sequence of 
multiple results.

在您的代码中,您正在使用在方法中创建结果集的同一对象ResultSet在方法中创建新对象,从而导致在方法中关闭结果集对象。getUserStatementusersInProjectusersInProject

解决方案: 创建另一个语句对象并使用它 getUser来创建结果集。

于 2012-09-10T06:23:06.230 回答