...
>
>
> Any help would be much appreciated.
>
> Jiri Samek
>
>
>
I have the same problem. I need to pass complex objects to Oracle stored
procedure via IBatis, and couldn't find
any solutions on the Web.
Since we started to use IBatis 3, I was wondering i
Hallo,
I have a stored procedure in DB (running on Oracle) with one parameter -
an Oracle object:
create or replace type TEST1STRING as object(
str VARCHAR(50)
)
create or replace
procedure test1(str IN OUT TEST1STRING)
IS
BEGIN
str.str := 'justsometext';
END;
I am trying to call this