Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL - Arrays, Heeelllppp!!!
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
![]() |
![]() |