I got this type in oracle:
TYPE "RequestTable" IS TABLE OF "Requests"%ROWTYPE;
I have used this type as an IN(or out) parameter of some stored procedures, like this: create or replace PROCEDURE
"RegisterRequestsBulk"
(
Par_RequestsBulk IN "TableTypes"."RequestTable"
, ErrorCodeTable OUT "TableTypes"."ErrorCodeTable"
) AS
BEGIN
...
Now, I need to call this SP from Java. How should I pass this kind of parameters?
The link in the comments is the "correct" way to do this. But you could create a table on the fly in a declare begin end block, and pass that to your proc call. In java, create a string like this
Then you can call your proc with this constructed string and expect the errors in a cursor. http://docs.oracle.com/cd/A84870_01/doc/java.816/a81354/samapp2.htm
Hope that makes sense.