Hi guys
I need help with the following issue. I'm writing a web application which have to call a stored procedure using
JDBC with IN object and receive output as OUT object. Here is the jist of the objects I have.
TestPkg in Oracle and the stored procedure I'm going to call from Java:
TESTDATA_IN_OBJ
ARR_OBJ_1_NT
ARR_OBJ_1_OBJ
TestDataINObj.java:
ArrObj1NT.java:
TestDataINObjConverter.java:
Now, I have the following code to send input to the stored procedure. I've used SQLData to send Java Objects to Sql.
Issue: The above code is working fine as long as I send null for the array in IN object to the stored procedure. If I follow the above code structure to send the Java array to SQL's stored procedure I'm facing the following exception when it is trying to create the ARRAY object in getOracleArray().
Question is: Can someone help me figure out how I can pass Java array as SQLArray to a object which is in turn passed as a parameter to stored procedure(SP)? If I am not successful with finding the solution for this, I may have to ask the DBA to change the structure of the SP like (object with only basic datatypes, inputarray, output). But I'm assuming there is a better and elegant way to handle this in Java. I appreciate any help or suggestions.
Note: There is no compilation errors in the above code, if I have missed something trivial please ignore it as my effort to make the question small.
Thanks
SK