从SQL Server存储过程中获取输出参数和ResultSet值

时间:2016-11-21 19:54:02

标签: java sql-server jdbc

我正在尝试获取传递给另一个SP的输出参数,所以我创建了一个测试,看看是否可以从中获取字符串但是会抛出异常:

  

java.sql.SQLException:无效状态,ResultSet对象已关闭

如果没有cs.getMoreResults();,则抛出另一个异常:

  

java.sql.SQLException:尚未处理输出参数。调用getMoreResults()。

如果我删除了if (rs.next()) {,那么它就可以了。 如何获取输出参数并仍然使用我的if rs.next

   protected String doInBackground(String... params) {
        if (userid.trim().equals("Developer")|| password.trim().equals("Dev!n_234"))
            isSuccess2=true;
        z = getString(R.string.login_succes);
        if(userid.trim().equals("")|| password.trim().equals(""))
            z = getString(R.string.indsæt_rigtigt_bruger);
        else {
            try {
                Connection con = connectionClass.CONN();
                if (con == null) {
                    z = getString(R.string.Forbindelses_fejl) + "L1)";

                } else {
                    String ID;
                    ID = setingPreferences.getString("companyid", "");
                    CallableStatement cs = null;
                    String query = "{ call [system].[usp_validateUserLogin](?,?,?,?,?)}  ";
                    cs = con.prepareCall(query);
                    cs.setString(1, userid);
                    cs.setString(2, password);
                    cs.setString(3, ID);
                    cs.setBoolean(4, true);
                    cs.registerOutParameter(5, Types.VARCHAR);
                    ResultSet rs = cs.executeQuery();

                    cs.getMoreResults();
                    System.out.println("Test : " + cs.getString(5));

                    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)+"L2)";
                Log.e("MYAPP", "exception", ex);
            }
        }
        return z;

    }
}

1 个答案:

答案 0 :(得分:4)

您需要先处理ResultSet值,然后检索输出参数值。这是因为SQL Server在发送结果集后发送输出参数值(参考:here)。

所以,这不会起作用:

ResultSet rs = cs.executeQuery();
System.out.println(cs.getString(5));  // clobbers the ResultSet
rs.next();  // error

但这应该没问题:

ResultSet rs = cs.executeQuery();
if (rs.next()) {
    // do stuff
}
System.out.println(cs.getString(5));  // retrieve the output parameter value