Using the default constructor (the name of the class) : Constructor « Object Oriented « Oracle PL/SQL Tutorial






SQL>
SQL> CREATE OR REPLACE TYPE ADDRESS_OBJ as OBJECT(
  2  street VARCHAR2(20),
  3  city VARCHAR2(20),
  4  state CHAR(2),
  5  zip CHAR(5))
  6  /

Type created.

SQL>
SQL> CREATE TABLE emp (
  2  empno NUMBER(3),
  3  name VARCHAR2(20),
  4  address ADDRESS_OBJ)
  5  /

Table created.

SQL> INSERT INTO emp VALUES (101, 'A',ADDRESS_OBJ('1 St.','M','AL','36608'));

1 row created.

SQL>
SQL> select * from emp;

     EMPNO NAME
---------- --------------------
ADDRESS(STREET, CITY, STATE, ZIP)
------------------------------------------
       101 A
ADDRESS_OBJ('1 St.', 'M', 'AL', '36608')


SQL>
SQL> drop table emp;

Table dropped.

SQL> drop type ADDRESS_OBJ;

Type dropped.

SQL>
SQL>








32.2.Constructor
32.2.1.Inserting a row into an object table using constructor
32.2.2.Using the default constructor (the name of the class)
32.2.3.User-Defined Constructors
32.2.4.Construct user-defined type with subquery
32.2.5.Use constructor to create new objects
32.2.6.Demonstrates object initialization.