1

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

cerestorm
  • 43
  • 7
  • here is the answer to your question https://stackoverflow.com/questions/4079662/boolean-parameter-for-oracle-stored-procedure – user3131897 Mar 13 '18 at 06:08

2 Answers2

0

Use parameterized query and while adding parameter select parameter type as BOOLEAN from drop down.

Vikalp
  • 24
  • 3