简体   繁体   English

使用java从sql server存储过程中检索返回的值

[英]Retrieve the returned value from sql server stored procedure using java

Here is my store procedure that returns a value. 这是我的商店程序,它返回一个值。 I need to call this procedure and get that return value into my java program. 我需要调用此过程并将该返回值放入我的java程序中。

 CREATE PROCEDURE my_procedure @advisor de , @adv_xml xml AS begin declare @psrg_idi idi, @adv_cd cd, @CurrDate cdt set @adv_cd = (select adv_cd from dbo.ADVICE_LK where upper(rtrim(adv_de)) = upper(@advisor)) set @psrg_idi = 0 set @CurrDate = getdate() BEGIN TRY exec my_proc_2 @CurrDate,@psrg_idi output insert into ADVICE (psrg_idi, adv_cd, psra_original_xml) values (@psrg_idi, @adv_cd, @adv_xml) select @psrg_idi as psrg_idi END TRY BEGIN CATCH DECLARE @ErrorMessage NVARCHAR(4000); DECLARE @ErrorSeverity INT; DECLARE @ErrorState INT; SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY(), @ErrorState = ERROR_STATE(); -- Use RAISERROR inside the CATCH block to return error -- information about the original error that caused -- execution to jump to the CATCH block. RAISERROR (@ErrorMessage, -- Message text. @ErrorSeverity, -- Severity. @ErrorState -- State. ); return -1 END CATCH end 

Here is how I am trying to get this value into my java program returned by the above stored procedure. 以下是我试图将此值放入上述存储过程返回的java程序中的方法。 When I call this procedure from java, all the expected values are stored into database tables. 当我从java调用此过程时,所有期望的值都存储在数据库表中。 But I am receiving the returned value groupId as '0'.. any idea or help will be highly appreciated. 但我收到返回值groupId为'0'..任何想法或帮助将受到高度赞赏。

 CallableStatement cs = con.prepareCall("{? = call my_procedure (?,?)}"); int i = 0; cs.registerOutParameter(++i, java.sql.Types.INTEGER); cs.setString(++i, advisor); cs.setString(++i, adviceXml); cs.execute(); int groupId = cs.getInt(1); 

I have already reviewed the accepted answer https://stackoverflow.com/a/1948518/674476 . 我已经审核了接受的答案https://stackoverflow.com/a/1948518/674476 I am also trying in the same way, but somehow not able to get returned value 我也以同样的方式尝试,但不知何故无法获得返回值

See accepted answer here . 请参阅此处接受的答案

First, you should decide if your SP will return a ResultSet or not. 首先,您应该决定您的SP是否会返回ResultSet。 I mean, when you catch an error, you do RETURN -1 . 我的意思是,当你发现错误时,你会RETURN -1 But, if all works fine, you perform a SELECT , which returns a ResultSet. 但是,如果一切正常,则执行SELECT ,返回ResultSet。

Said that, if you choose to return a value, you have to do: 说,如果你选择返回一个值,你必须这样做:

CallableStatement cs = con.prepareCall("{? = call my_procedure (?,?)}");                
int i = 0;
cs.registerOutParameter(++i, java.sql.Types.INTEGER);
cs.setString(++i, advisor);
cs.setString(++i, adviceXml);

cs.execute();
int groupId = cs.getInt(1);

But, if you return a ResultSet, you have to do: 但是,如果返回ResultSet,则必须执行以下操作:

CallableStatement cs = con.prepareCall("{call my_procedure (?,?)}");                
int i = 0;
cs.setString(++i, advisor);
cs.setString(++i, adviceXml);

ResultSet rs = cs.executeQuery();
if (rs.next())
    int groupId = rs.getInt(1);

I've tested both methods using a toy SP: 我用玩具SP测试了两种方法:

CREATE PROCEDURE my_procedure @v1 int, @v2 int 
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

    --SELECT @v1 + @v2 as sumVal -- Comment this and uncomment previous line to test Return
RETURN @v1+@v2 -- Comment this and uncomment previous line to test ResultSet
END

Below is the solution to the problem and it works perfectly fine in my case. 下面是问题的解决方案,在我的情况下它完全正常。

CallableStatement cs = con.prepareCall("{call my_procedure(?,?)}");  
int i = 0;
cs.setString(++i, advisor);
cs.setString(++i, adviceXml);

boolean isRs = cs.execute();
int updateCount = cs.getUpdateCount();
// cs.getUpdateCount() will return -1 if the current result is a ResultSet object 
// or there are no more results
// cs.getMoreResults() will return true  if the next result is a ResultSet object; 
// false if it is an update count or there are no more results

while (!isRs && (cs.getUpdateCount() != -1)) {
    isRs = cs.getMoreResults(); 
}

if (isRs) {
    ResultSet rs = cs.getResultSet();
    try {
        if (rs.next()) {
             groupId = rs.getString("psrg_idi");
        }
    } finally {
        rs.close();
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM