Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL - Arrays, Heeelllppp!!!

Re: PL/SQL - Arrays, Heeelllppp!!!

From: Lando <MarkL_at_quebim.com>
Date: 1997/10/13
Message-ID: <3442749C.F92505AE@quebim.com>#1/1

Check out table types, or more specifically table of record types. For example:

 TYPE UsrRecType is Record

    (User_ID          users.usr_id%type,
     User_Name     users.usr_username%type);

  TYPE UsrTabType is Table of UsrRecType     index by binary_integer;

  UsrTab UsrTabType;

Javi wrote:

> Hi ! I've one question for you: Bidimensional Arrays
>
> VB code : Dim myArray(1 to 7, 1 to 7) as long
>
> PL/SQL : ???????????????????????????????????
>
> Thank you.
Received on Mon Oct 13 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US