我编写了应从我的servlet调用MSSQL 2005过程的代码。问题是该过程是从表中选择数据,所以我想获取ResultSet但结果集永远不会返回:(我用另一个过程测试了该过程,并且它有效,而且,客户端连接特权是dbowner,所以应该没有连接问题,但仍然执行返回false :(

这是问题代码(我检查了当前连接是否已连接):

...
    SQLServerCallableStatement callableStatement = null;
    callableStatement = (SQLServerCallableStatement) connection.prepareCall(
                        "{call "+
                        DATABASE_NAME+
                        "."+
                        SCHEMA_NAME+
                        ".select_item_proc(?,?,?)}");

                        callableStatement.setInt(1, 0);
                callableStatement.setString(2, "value1");
                callableStatement.setString(3, "value2");

           boolean rs=callableStatement.execute();

          if(rs)
          {
             ResultSet result=callableStatement.getResultSet();




                while (result.next()) {

                    String col1= result.getString(1);
                    String col2=result.getString(2);
                    System.out.print(col1+",");
                    System.out.println(col2);


                }


}
...


因此,我需要您重新审视一下,真正的问题是什么?任何有用的评论表示赞赏

最佳答案

请尝试使用ResultSet rs = callableStatement.executeQuery();而不是boolean rs=callableStatement.execute();行。

10-08 01:21