using array. [message #116684] |
Thu, 21 April 2005 06:47 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
zigbinputi
Messages: 11 Registered: April 2005
|
Junior Member |
|
|
hi,
i want to use array in forms6i, stores my details & retrieve it later.. how can i do it? is the example below ok?
my_data(100) varchar2(200);
my_number(100) number;
begin
for i in 1..100
loop
my_data(i) := 'value';
my_number(i) := i;
end loop;
end;
pls.. help how to use array..
|
|
|
|
|
Re: using array. [message #117222 is a reply to message #116684] |
Mon, 25 April 2005 19:02 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/67467.jpg) |
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Create a package 'my_pkg'.
CREATE OR REPLACE PACKAGE my_pkg is
type tokens is table of varchar2(500) index by binary_integer;
END my_pkg;
CREATE OR REPLACE PACKAGE BODY my_pkg
IS
END my_pkg;
[You will probably have to create a 'dummy' procedure or function to get the load of the package to work.]
Then store your values as:
my_pkg.tokens(1) := value;
Try it and see how you go.
David
|
|
|