ストアド プロシージャからの戻り値として参照カーソルと共に IN OUT パラメータが必要です。現在、私は次のことを行っています。
create table dept
( dept_id number,
name varchar2(40),
location varchar2(200)
);
CREATE OR REPLACE PACKAGE HR.SP_PACKAGE AS
TYPE dept_type IS REF CURSOR RETURN HR.dept%ROWTYPE;
END SP_PACKAGE;
CREATE OR REPLACE PROCEDURE HR.MIXED_IN_INOUT_REF_PARAM
(
P_ID IN NUMBER
, P_NAME_TO_LOCATION IN OUT VARCHAR2
, P_RCURSOR OUT SP_PACKAGE.dept_type
) AS
BEGIN
SELECT name INTO P_NAME_TO_LOCATION FROM HR.dept WHERE dept_id = p_id AND name = P_NAME_TO_LOCATION;
OPEN P_RCURSOR FOR
select *
from HR.dept;
END MIXED_IN_INOUT_REF_PARAM;
コンパイルが成功しても、実行時にいくつかのエラーが発生します。
ORA-06550: line 4, column 17:
PLS-00201: identifier 'CURSOR' must be declared
ORA-06550: line 4, column 13:
PL/SQL: Item ignored
ORA-06550: line 12, column 18:
PLS-00320: the declaration of the type of this expression is incomplete or malformed
ORA-06550: line 9, column 3:
PL/SQL: Statement ignored
ORA-06550: line 21, column 17:
PLS-00320: the declaration of the type of this expression is incomplete or malformed
ORA-06550: line 21, column 3:
PL/SQL: Statement ignored
私はSql開発者を使用しています。どんな助けでも大歓迎です。