DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Project

  1. #1
    Join Date
    Oct 2000
    Posts
    25

    Red face

    Hi, everyone,

    I found an Object Type: Project. I don't understand what does it mean and I can't find any info. that is useful in Oracle Documentation.

    can anyone tell me what's the Definition of Project? What does it do? What does it not do?

    Thank you very very very much in advance. I'm despert about finding out the answer...

  2. #2
    Join Date
    Jan 2001
    Posts
    515

    Objects

    It looks like someone created an object to store information.

    declare

    type address_rec is object(
    name varchar2(20),
    address1 varchar2(20),
    address2 varchar2(20),
    city varchar2(20),
    state varchar2(20),
    zip varchar2(5),
    phone varchar2(10));

    cust_info address_rec;

    begin

    etc......


    This way you only have to specify cust_info instead of all those other fields.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width