Creating package-level associative array in java - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T13:39:52Zhttp://stackoverflow.com/feeds/question/457933http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457933/creating-package-level-associative-array-in-java1Creating package-level associative array in javaAndy2009-01-19T15:18:25Z2009-01-19T15:59:55Z
<p>Is it possible to create a java representation of a package-level oracle associative array. For example, given the following:</p>
<pre><code>CREATE OR REPLACE PACKAGE MyPackage AS
TYPE t_numbers IS TABLE OF NUMBER INDEX BY PLS_INTEGER;
</code></pre>
<p>I find I cannot write the following java:</p>
<pre><code>ArrayDescriptor descriptor =
ArrayDescriptor.createDescriptor("MyPackage.t_numbers", connection);
</code></pre>
<p>(throws a SQLException "Invalid name pattern").</p>
<p>What is the correct syntax for an ArrayDescriptor referencing a package-level associative array? Does such a thing even exist?</p>
http://stackoverflow.com/questions/457933/creating-package-level-associative-array-in-java/458090#4580903Answer by tuinstoel for Creating package-level associative array in javatuinstoel2009-01-19T15:59:55Z2009-01-19T15:59:55Z<p>See <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3696816290928" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3696816290928</a> and especially <a href="http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/oci_func.htm#1017512" rel="nofollow">http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/oci_func.htm#1017512</a> . </p>