如何从Oracle存储过程中获取两个返回值

时间:2012-02-28 14:51:30

标签: oracle

我知道如何从Oracle中的Oracle SP获得一个返回值,如下所示

MyReturn := MY_ORACLE_SP ();

如果MY_ORACLE_SP2的返回值为多个。我该怎么办?

4 个答案:

答案 0 :(得分:18)

-- IN arguments : you get them. You can modify them locally but caller won't see it
-- IN OUT arguments: initialized by caller, already have a value, you can modify them and the caller will see it
-- OUT arguments: they're reinitialized by the procedure, the caller will see the final value.
CREATE PROCEDURE f (p IN NUMBER, x IN OUT NUMBER, y OUT NUMBER)
IS
BEGIN
   x:=x * p;
   y:=4 * p;
END;
/

SET SERVEROUTPUT ON

declare
   foo number := 30;
   bar number := 0;
begin
   f(5,foo,bar);
   dbms_output.put_line(foo || ' ' || bar);
end;
/

输出:150 20

答案 1 :(得分:7)

你所拥有的技术上不是程序,而是功能 - 不同之处在于程序没有返回值且不能用作转让声明的右侧。

您基本上有两个选择:

(1)使用OUT参数。在这种情况下,我会使它成为一个带有两个OUT参数的过程。通常人们不喜欢也具有OUT参数的功能,因为它违反了通常的期望。 @Benoit的回答显示了这种方法。

(2)定义包含多个值的类型,并将其用作函数的返回类型。例如:

CREATE TYPE two_values AS object (
  A NUMBER,
  b number
  );
  /

CREATE FUNCTION get_two_values RETURN two_values AS
BEGIN
  RETURN two_values(2,4);
END;
/

答案 2 :(得分:1)

使用OUTPUT参数代替返回值。

答案 3 :(得分:-2)

尝试以下代码我刚刚修改了用户Benoit的响应

ab=`sqlplus -s system/password << eof

SET SERVEROUTPUT ON
set pagesize 0;
set heading off;
set feedback off;
set linesize 5000;
set trimspool on;
declare
   foo number := 30;
   bar number := 0;
begin
   f(5,foo,bar);
   dbms_output.put_line(foo || ' ' || bar);
end;
/

eof`

echo $ab