I have a task for a Mule
flow to call an Oracle
database stored procedure. This procedure has a number of parameters, which are all being passed successfully except the a boolean
value. I'm getting the following error, no matter what I try:
java.sql.SQLException: Invalid column type
From a bit of research it's my understanding that boolean
values are not supported in the Oracle JDBC
library and cannot be passed to PL/SQL
stored procedures. If this is true, how would one work around this problem in Mule
, or would the stored procedure itself have to be changed?
Many thanks