尝试调用存储过程时索引超出范围

Getting index out of range when trying to call a stored procedure

我有一个查询应该按顺序获取 2 个 "tinyint" 参数 运行,我将其包装为一个存储过程。

sql中的存储过程如下:

Create Procedure query3
@X tinyint = null,
@Y tinyint = null
AS
BEGIN
SELECT T.tressure_No as 'Treasure Number', T.tressure_Name as 'Treasure Name' , COUNT( DISTINCT U.user_detail_Name) as numOfUsers

FROM dbo.tblUser AS U INNER JOIN dbo.tblTressure AS T
     ON U.country_id_user = T.country_Hidden_Code
     INNER JOIN dbo.tblListContains AS LC
     ON T.tressure_No = LC.tressure_No 
     AND LC.user_name_detail = U.user_detail_Name

WHERE U.user_detail_Name  IN(SELECT  LC.user_name_detail
                             FROM dbo.tblListContains AS LC
                             WHERE T.tressure_No = LC.tressure_No AND LC.user_name_detail NOT IN (SELECT LF.user_detail_Name
                                                                                                  FROM dbo.tblLookingFor AS LF
                                                                                                  WHERE LF.tressure_No = T.tressure_No
                                                                                                  AND LF.user_detail_Name = U.user_detail_Name)
                             GROUP BY LC.user_name_detail, LC.tressure_No
                             HAVING COUNT( LC.num_Of_List_User)>=@Y)


GROUP BY T.tressure_No, T.tressure_Name
Having COUNT( DISTINCT U.user_detail_Name)>=@X;
END

当我在 2008 SQLEXPRESS 服务器 R2 管理器中测试存储过程时,它工作正常,return 中的查询结果符合预期。 但是当我试图从我的 JAVA GUI 中调用它时,它就会崩溃...... 这是 java 代码(在我的 gui 中调用此方法以用结果集填充 table):

public ResultSet getQuery3Results(byte numOfUsers, byte numberOfLists){
        ResultSet rs = null;
        try{
            Class.forName(server);
            System.out.println("here1");
            conn = DriverManager.getConnection(LINK);
            String callStatement = "{call query3(?,?)}";
            pst.setByte(1, numOfUsers);
            pst.setByte(2, numberOfLists);
            System.out.println("here2");
            pst = conn.prepareCall(callStatement);
            rs = pst.executeQuery();
            return rs;
        }
        catch (SQLException ex){
            ex.printStackTrace();
            rs = null;
            return rs;
        }
        catch (ClassNotFoundException e){
            e.printStackTrace();
        }
        return rs;
    }

我得到这个异常堆栈跟踪:

com.microsoft.sqlserver.jdbc.SQLServerException: The index 1 is out of range.
    at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)
    at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.setterGetParam(Unknown Source)
    at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.setByte(Unknown Source)
    at View.ViewLogic.getQuery3Results(ViewLogic.java:1170)
    at View.ViewLogic.handleGenerateQuery3Button(ViewLogic.java:1641)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.reflect.misc.Trampoline.invoke(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.reflect.misc.MethodUtil.invoke(Unknown Source)
    at javafx.fxml.FXMLLoader$MethodHandler.invoke(Unknown Source)
    at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(Unknown Source)
    at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
    at javafx.event.Event.fireEvent(Unknown Source)
    at javafx.scene.Node.fireEvent(Unknown Source)
    at javafx.scene.control.Button.fire(Unknown Source)
    at com.sun.javafx.scene.control.behavior.ButtonBehavior.mouseReleased(Unknown Source)
    at com.sun.javafx.scene.control.skin.BehaviorSkinBase.handle(Unknown Source)
    at com.sun.javafx.scene.control.skin.BehaviorSkinBase.handle(Unknown Source)
    at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(Unknown Source)
    at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
    at javafx.event.Event.fireEvent(Unknown Source)
    at javafx.scene.Scene$MouseHandler.process(Unknown Source)
    at javafx.scene.Scene$MouseHandler.access00(Unknown Source)
    at javafx.scene.Scene.impl_processMouseEvent(Unknown Source)
    at javafx.scene.Scene$ScenePeerListener.mouseEvent(Unknown Source)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(Unknown Source)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent4(Unknown Source)
    at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(Unknown Source)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(Unknown Source)
    at com.sun.glass.ui.View.handleMouseEvent(Unknown Source)
    at com.sun.glass.ui.View.notifyMouse(Unknown Source)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null8(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

我不知道我做错了什么,欢迎提出建议和领导:D

汤姆

此行需要在设置值之前发生

pst = conn.prepareCall(callStatement);

此外,您必须确保根据 Microsoft 映射规则传递适当的数据类型。 https://msdn.microsoft.com/en-us/library/ms378878(v=sql.110).aspx

conn = DriverManager.getConnection(LINK);
String callStatement = "{call query3(?,?)}";
pst.setShort(1, numOfUsers);
pst.setShort(2, numberOfLists);