Using Oracle ref cursor in Java without Oracle dependency - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T01:15:37Zhttp://stackoverflow.com/feeds/question/445455http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/445455/using-oracle-ref-cursor-in-java-without-oracle-dependency4Using Oracle ref cursor in Java without Oracle dependencyYoni2009-01-15T02:41:19Z2009-07-12T18:44:08Z
<p>According to google and some other sources (e.g., <a href="http://www.enterprisedt.com/publications/oracle/result_set.html" rel="nofollow">http://www.enterprisedt.com/publications/oracle/result_set.html</a>), if I want to call a stored-function that returns a ref cursor, I need to write something like this in order to access the ResultSet:</p>
<pre><code>String query = "begin ? := sp_get_stocks(?); end;";
CallableStatement stmt = conn.prepareCall(query);
// register the type of the out param - an Oracle specific type
stmt.registerOutParameter(1, OracleTypes.CURSOR);
// set the in param
stmt.setFloat(2, price);
// execute and retrieve the result set
stmt.execute();
ResultSet rs = (ResultSet)stmt.getObject(1);
</code></pre>
<p>Is there anyway to do it without introducing the compile-time dependency on Oracle. Is there a generic alternative to OracleTypes.CURSOR?</p>
http://stackoverflow.com/questions/445455/using-oracle-ref-cursor-in-java-without-oracle-dependency/445925#4459251Answer by martsraits for Using Oracle ref cursor in Java without Oracle dependencymartsraits2009-01-15T07:27:09Z2009-01-15T07:27:09Z<p>Constant <code>OracleTypes.CURSOR</code> is -10. Quite ugly solution but you can just write -10 there or create your own constant which value is -10.</p>
http://stackoverflow.com/questions/445455/using-oracle-ref-cursor-in-java-without-oracle-dependency/446034#4460341Answer by martsraits for Using Oracle ref cursor in Java without Oracle dependencymartsraits2009-01-15T08:39:40Z2009-01-15T08:39:40Z<p>Have you tried <code>java.sql.Types.OTHER</code>? It might work. API says, it's for database specific types.</p>