ORA-30773: opaque types do not have default constructors
Cause: Constructor invocation did not succeed, since no user-defined constructors were defined for the opaque type, and since opaque types do not have default constructors.
Action: Add user-defined constructors to opaque type, or specify a member or static method for the opaque type.
ORA-30773:不透明类型没有默认构造函数
ORA-30773错误消息是Oracle数据库在处理不透明类型时返回的消息。这意味着尝试使用不透明类型却没有定义构造函数,但是必须定义构造函数才能使用该类型。
当我们试图定义一个不透明类型并初始化变量(使用构造函数)时,会发生此错误。
1.确保您的代码定义了不透明类型的构造函数;
2.检查构造函数是否有效,函数调用是否正确;
3. 确保类型参数和实参的类型相匹配;
4. 将变量定义为不透明类型;
5. 确保与变量有关的任何运算符都是支持不透明类型的;
6. 使用正确的重载和重命名调用构造函数。