Create a stored type which is visible to SQL and PL/SQL. : Object « Object Oriented Database « Oracle PL / SQL






Create a stored type which is visible to SQL and PL/SQL.

    
SQL> CREATE OR REPLACE TYPE NameList AS
  2    VARRAY(20) OF VARCHAR2(30);
  3  /

Type created.

SQL>
SQL> DECLARE
  2    -- This type is local to this block.
  3    TYPE DateList IS VARRAY(10) OF DATE;
  4
  5    -- We can create variables of both DateList and NameList here.
  6    v_Dates DateList;
  7    v_Names NameList;
  8  BEGIN
  9    NULL;
 10  END;
 11  /

PL/SQL procedure successfully completed.

SQL>
SQL>

   
    
    
  








Related examples in the same category

1.Create Object
2.CREATE OR REPLACE TYPE
3.reference user-defined data type in another block
4.Student type
5.Point type
6.Use user-defined type as parameter
7.This script demonstrates complex objects
8.Name type
9.Behavior of dependent objects.
10.Build data type with another user type
11.Create the object and collection types
12.Create type and use it in inner query
13.Create types and then use it in pl/sql block
14.Combine user-defined type to create new type
15.PriceType becomes the datatype of the price attribute in the ProductType object type
16.Use self to reference member variable in constructor
17.One to list using object references