Creating package-level associative array in java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:39:52Z http://stackoverflow.com/feeds/question/457933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/457933/creating-package-level-associative-array-in-java 1 Creating package-level associative array in java Andy 2009-01-19T15:18:25Z 2009-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#458090 3 Answer by tuinstoel for Creating package-level associative array in java tuinstoel 2009-01-19T15:59:55Z 2009-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>