Hi Lukas,
It is the binding of the return parameter. A stored procedure with a
BOOLEAN paramer but no return parameters like
CREATE OR REPLACE PROCEDURE TestProcedure3(a IN NUMBER, Flag IN BOOLEAN, b
IN VARCHAR2) IS
BEGIN
IF(Flag=TRUE) THEN
debug(a);
ELSE
debug(b);
END IF;
END;
/
works properly with jOOQ.So the issue is not with BOOLEAN parameters
themself but with the binding of return/out parameters of
functions/procedures.
Marcus
--
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].
For more options, visit https://groups.google.com/d/optout.