如何在 oracle 存储过程中将对象类型设置为 out?

Posted

技术标签:

【中文标题】如何在 oracle 存储过程中将对象类型设置为 out?【英文标题】:How can i set object type to out in oracle stored procedure? 【发布时间】:2015-07-03 12:03:41 【问题描述】:

我是 oracle 的初学者,我写过这个 oracle 对象类型:

create or replace 
TYPE behzadtype AS OBJECT 
( /* TODO enter attribute and method declarations here */ 
  SESSIONID Number,
  myID Number

)

还有这个存储过程:

create or replace 
PROCEDURE PROCEDURE1(IDD IN Number) AS 

  t1 behzadtype;
BEGIN
  t1:=behzadtype(12,13);

   DBMS_OUTPUT.PUT_LINE('THE VALUES OF SESSION ID ARE: ' || t1.SESSIONID || ' AND OTHE IS:' || t1.myID);

END PROCEDURE1;

上程序定义IDD IN Number作为输入参数,我想t1 behzadtype;作为输出参数,我该如何声明呢?谢谢。

【问题讨论】:

***.com/questions/31204499/…的可能重复 @davegreen100 感谢我的朋友,但我想将该对象定义为 out 参数 【参考方案1】:

创建指定类型的参数并声明为out参数。

create or replace procedure procedure1(IDD IN number, p_out out behzadtype);

http://plsql-tutorial.com/plsql-passing-parameters-procedure-function.htm

【讨论】:

以上是关于如何在 oracle 存储过程中将对象类型设置为 out?的主要内容,如果未能解决你的问题,请参考以下文章

如何在过程oracle中将表名设置为参数

如何在 Oracle SQL Developer 的存储过程中将表名列表作为参数传递?如何使用 PLSQL VARRAY 或嵌套表?

无效的模式名称; Oracle 存储过程输入参数

在不创建存储过程的情况下,如何在 Oracle 中将多行连接成一行? [复制]

我想通过在 oracle 中将输入变量和输出传递为 json 格式来创建存储过程?

oracle 如何返回多条记录