I am using a setter to set an IN Parameter, in my oracle stored procedure, 
its marked as below

PROCEDURE test
    (
       test_1                        IN OUT       someType,
      test_2                         IN.               someType
)

when I use the setter , setTest1 which is auto generated 
Test test = new Test();
test.setTest1("something")
, it sets the value. But when I execute
test.execute(configuration). the binding log shows the value as ? and I get 
this error
"wrong number or types of arguments in call" , I see all other params are 
set successfully.

Is this is a known issue? what is the workaround?


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jooq-user/268f12ca-9687-4e72-b072-3a77cfc6b50an%40googlegroups.com.

Reply via email to