1

我正在尝试改进从 hsqldb 中选择数据的函数,因此我尝试在多个线程中运行它,但出现以下异常:

java.sql.SQLNonTransientConnectionException: connection exception: closed
    at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    at org.hsqldb.jdbc.JDBCStatementBase.checkClosed(Unknown Source)
    at org.hsqldb.jdbc.JDBCStatementBase.getResultSet(Unknown Source)
    at org.hsqldb.jdbc.JDBCStatement.getResultSet(Unknown Source)
    at org.hsqldb.jdbc.JDBCStatement.executeQuery(Unknown Source)

这是我每次都尝试在新线程中运行的函数:

public List<String> getAllClassNames(boolean concrete) throws ClassMapException {
        List<String> result = new ArrayList<String>();


        try {
            ResultSet rs = null;
            Connection connection = DBConnection.getConnection();
            Statement st = connection.createStatement();
            if (concrete)
                rs = st.executeQuery("select cd_name from CLASS_DESCRIPTORS where CD_CONCRETE=true  order by cd_name");
            else
                rs = st.executeQuery("select cd_name from CLASS_DESCRIPTORS order by cd_name");
            while (rs.next()) {
                result.add(rs.getString("cd_name"));
            }
        } catch (SQLException e) {
            _log.error("SQLException while retrieve all class names." + e.getMessage(), e);
            throw new ClassMapException("SQLException while retrieve all class names." + e.getMessage(), e);
        } finally {
            DBConnection.closeConnection();
        }
        return result;
    }

我读到由不同的线程执行多个选择会关闭连接。这是真的吗?如何解决?

4

1 回答 1

1

似乎连接已关闭,因为该功能使用相同的连接并在第一次使用后关闭。检查您的 DBConnection 类是如何编写的。

代码中还有其他问题,例如语句 st 永远不会关闭,或者语句没有准备好然后重用。

您还可以使用 HSQLDB 中的 ARRAY_AGG 函数来返回您的数组,而不是自己创建它。下面给出了指南的链接和使用示例。

http://hsqldb.org/doc/2.0/guide/dataaccess-chapt.html#N12538

select array_agg(cd_name order by cd_name) as arr from CLASS_DESCRIPTORS where CD_CONCRETE=true

Array array = rs.getArray(1)

该数组是一个 JDBC 数组,可以通过其 JDBC 方法进行引用。

于 2012-08-15T10:15:22.937 回答