Link to home
Create AccountLog in
Avatar of geoffbates
geoffbates

asked on

I Oracle Forms 4.5 TYPE IS TABLE OF varchar2(500)

I have the following code, I am attempting to create an array variablr to hold various data:

DECLARE
 type t is table of number INDEX BY BINARY_INTEGER;

I get the compiler error unexpected symbol "of"
Forms does not like the type declaration for some reason
Avatar of Sean Stuber
Sean Stuber

declare your pl/sql table in a package within the database and use it there instead of in your forms pl/sql.
ASKER CERTIFIED SOLUTION
Avatar of Mark Geerlings
Mark Geerlings
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of geoffbates

ASKER

Many thanks