Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> using an Hashtable in a Stored Procedure

using an Hashtable in a Stored Procedure

From: Laura <f.marchioni_at_pride.it>
Date: 10 May 2007 06:51:51 -0700
Message-ID: <1178805111.244272.148850@q75g2000hsh.googlegroups.com>


Hi all !
I have to write a little Stored Procedure which collects Varchars from a sessionId and stores them in an Array. (One array for every sessionId)
For example in Java it would be like this:

Hashtable hash = new Hashtable();

public addToHash(String sessionId,String value) {

     hash.put(sessionId,value);

}

Is it possible to do the same in PL/SQL ? or do I have to write it in Java and load it in Oracle ?
Thanks
Laura Received on Thu May 10 2007 - 08:51:51 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US