Pregunta

What is the unit type in PL/SQL? If there is no built-in type, how do I make one?

No hay solución correcta

Otros consejos

Perhaps you are trying to create your own type. In Oracle you can achieve that with the CREATE TYPE statement.

Use the CREATE TYPE statement to create the specification of an object type, a SQLJ object type, a named varying array (varray), a nested table type, or an incomplete object type. You create object types with the CREATE TYPE and the CREATE TYPE BODY statements. The CREATE TYPE statement specifies the name of the object type, its attributes, methods, and other properties. The CREATE TYPE BODY statement contains the code for the methods that implement the type.

You can define the behavior of your own object.

link

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top