ORA-06531: 引用未初始化的收集 的问题解决
Posted wonder4
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORA-06531: 引用未初始化的收集 的问题解决相关的知识,希望对你有一定的参考价值。
今天调试存储过程出现“ORA-06531: 引用未初始化的收集”错误,仔细查找了一下metalink,发现是需要初始化,而以前采用的表结构的都没有作过初始化这个步骤,后来看了一下,是因为声明的方式没有按照表的方式声明,而是自己手工写的字段。先寒一个!
----------------
从metalink上面看到,这种类型应该像下面那样使用:
--Create EMPLOYEE_TYPE
CREATE OR REPLACE type employee_type as object(
empid number,
empname varchar2(20),
job varchar2(20));
/
--Create EMPLOYEE_TAB_TYPE
CREATE OR REPLACE type employee_tab_type as table of employee_type ;
/
--Create DEPARTMENT_TYPE -- using employee_tab_type
CREATE OR REPLACE type department_type as object(
deptid number,
deptname varchar2(20),
deptlocation varchar2(20),
emp_tab employee_tab_type);
/
DECLARE
/* Initialize the collection , else you will get ORA-06531: Reference to uninitialized collection */
my_emp employee_tab_type:=employee_tab_type();
my_dept department_type;
Begin
my_emp.extend; -- 必须指定,否则会报指针越界
my_emp(1):=employee_type(2,'Savitha','mgr'); -- 如果是record也可以直接赋值employee_type
my_dept :=department_type(1,'RESEARCH','India',my_emp);
END;
/
以上是关于ORA-06531: 引用未初始化的收集 的问题解决的主要内容,如果未能解决你的问题,请参考以下文章
为啥我在尝试调用过程时得到 ORA-06531: reference to uninitialized collection?