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
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
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
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Many thanks