Re: Oracle objects mapping in iBatis 3

2010-03-30 Thread Arpon
... > > > 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

Oracle objects mapping in iBatis 3

2010-02-05 Thread Samek Jiri - AZ Direct
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