Hi all,
I want to store in memory data that are in a table; Try to explain better:
the result set of this query:
select field1,
filed2,
filed3
from table t
I should want to store the result in a varray or associative array, in order to have the result set in memory;
and after given a couple (field1,field2) getting the value of field field3;
Which one is the better way to accomplish that?
thanks really much.