数据访问对象 class 获取 SQLServerException

Data Access Object class getting SQLServerException

我在执行 sql 语句时得到以下执行

SQLServerException: The server failed to resume the transaction. Desc:69d00000016.

我知道下面的 DAO 实现是不正确的。我想知道以下代码的正确实现是什么,以及我的 connFactory 被声明为静态是否会导致上述错误。

private static DbConnectionFactory connFactory;

    protected myDAO() {
        myDAO.connFactory = DbConnectionFactoryHome.getHome().lookupFactory("facName");
    }

    public myReturn myAccessMethod(final int cod) throws BaseException {
        Connection conn = null;
        CallableStatement stmt = null;
        ResultSet resSet = null;
        myReturn ret= null;

        try {
            conn = myDAO.connFactory.getConnection();
            stmt = conn.prepareCall("{call name (2)}");
            stmt.setInt(1, cod);
            resSet = stmt.executeQuery();
            if (resSet.next()) {                    
                ret = new myReturn(resSet.getInt("someValue"));                    
            }
        }
        catch (SQLException sqle) {                
            throw new myException(sqle.getMessage(), (Throwable)sqle);
        }
        finally {
            try {
                if (resSet != null) {
                    resSet.close();
                }
                if (stmt != null) {
                    stmt.close();
                }
                if (conn != null) {
                    conn.close();
                }
            }                
        }            
        return ret;
    }

我应该从 connFactory 中删除 static 修饰符还是实现单例,以便在再次调用构造函数时不会重新创建工厂?

我会让您的 DBConnectionFactory 成为单例。可以在此处找到如何执行此操作的一个很好的示例:Singleton DB Connectionfactory.

但是,我不确定您的问题是数据库连接工厂是静态的。它实际上可能与您使用结果集提取结果的方式有关。确保处理所有结果。 您应该包括一个更完整的堆栈跟踪。您可能想调查为什么会收到:“服务器未能恢复事务。”有一篇文章介绍了导致此错误的原因以及如何解决此错误:Failed to resume transaction

尝试做这样的事情:

CallableStatement stmt = connection.prepareCall("{call name (2)}");
stmt.setInt(1, cod);

stmt.execute();

ResultSet rs = (ResultSet)stmt.getObject(index);

//Loop results
while (rs.next()) {
  ret = new myReturn(resSet.getInt("someValue")
}