SQLException尚未设置参数#7

时间:2016-11-16 14:29:58

标签: java sql-server stored-procedures login

所以我正在尝试使用我们的登录程序,问题在于它有三种不同的方式来回传信息:out参数,return valueresult和我我不知道如何使用它 我得到了

  

java.sql.SQLException:参数#7尚未设置

我的第7个参数是什么?我应该如何去除它?使这个功能

protected String doInBackground(String...params) {
    if (userid.trim().equals("") || password.trim().equals("")) z = getString(R.string.wrong_user);
    else {
        try {
            Connection con = connectionClass.CONN();
            if (con == null) {
                z = getString(R.string.connection_error);
            } else {
               String query = "{?=call [system].[usp_validateUserLogin](?,?,?,?,?)}";
                    CallableStatement cs = con.prepareCall(query);
                    cs.registerOutParameter(1,Types.INTEGER);
                    cs.setString(2, userid);
                    cs.setString(3, password);
                    cs.setInt(4, 72);
                    cs.setNull(5, Types.BIT);
                    cs.registerOutParameter(6, Types.VARCHAR);
                    boolean firstResultIsResultSet = cs.execute();
                    if (firstResultIsResultSet) {
                        ResultSet rs = cs.getResultSet();
                        // process result set
                    }
                }
                //if (rs.next()) {
                 //   z = getString(R.string.login_succes);
                 //   isSuccess = true;
               // } else {
               //     z = getString(R.string.Invalid_Credentials);
               //     isSuccess = false;
               // }
            }
        } catch (Exception ex) {
            isSuccess = false;
            z = getString(R.string.Exceptions);
        }
    }
    return z;
}

我有SP如下

ALTER PROCEDURE [system].[usp_validateUserLogin]
    @p_Login                NVARCHAR ( 50 ),
    @p_Password             NVARCHAR ( 32 ),
    @p_CompanyID            INT,
    @p_OutDetails           BIT = 1,
    @p_AuthenticationTicket VARCHAR(200) OUTPUT
AS
  BEGIN
      SET NOCOUNT ON;

      DECLARE @errNo    INT,
              @recCount INT,
              @res      INT

      SELECT u.*
      INTO   #TMPLOGIN
      FROM   SYSTEM.[user] AS u WITH ( NOLOCK )
      WHERE  ( u.login = @p_Login )
             AND ( u.company_id = @p_CompanyID )
             AND ( PWDCOMPARE (@p_Password, u.passwd) = 1 )
             AND ( u.status = 0 ) --Active
      SELECT @errNo = @@ERROR,
             @recCount = @@ROWCOUNT

      IF ( @errNo <> 0 )
        BEGIN
            RETURN 1010
        END

      IF ( @recCount = 1 )
        BEGIN
            DECLARE @userID INT

            SELECT @userID = id
            FROM   #TMPLOGIN

            EXEC @res = SYSTEM.USP_RENEWAUTHENTICATIONTICKET
              @p_DoerTicket = '',
              @p_AuthenticationTicket = @p_AuthenticationTicket OUTPUT,
              @p_UserID = @userID,
              @p_CompanyID = @p_CompanyID

            IF ( @res <> 0 )
              RETURN @res
        END

      --SET @p_AuthenticationTicket = 'TESTAUTHENTICATIONTICKET0123456789'
      IF ( @p_OutDetails = 1 )
        BEGIN
            SELECT *
            FROM   #TMPLOGIN
        END

      RETURN 0
  END  

enter image description here

到目前为止我一直在尝试

  1. String query = "{call [system].[usp_validateUserLogin](?,?,?,?,?)}";
  2. 给了我

      

    executeQuery方法必须返回结果

    1. cs.setNull(7, Types.NULL);
    2. 然后我得到了

        

      java.sql.SQLException:过程或函数usp_validateUserLogin指定的参数太多。

      1. cs.setInt(5, 1); 仍然是相同的

      2. ResultSet rs = cs.executeQuery();

      3. 而不是

        boolean firstResultIsResultSet = cs.execute();
        

1 个答案:

答案 0 :(得分:1)

我认为cs.setNull(5,Types.BIT)将不会按预期运行(为@p_OutDetails设置默认值等于1)您必须执行cs.setBoolean(5,true)或使用命名参数{? = call [system] .usp_validateUserLogin}

除此之外,您的代码很好,所以问题必须在其他地方。你真的连接到你认为的数据库吗?您确定数据库中的过程定义与您发布的相同吗?