0

I am using camel 2.18 camel-sql component for calling stored procedures. Is it possible to call oracle stored procedure which has an INOUT parameter?

Maciavelli
  • 101
  • 1
  • 14

1 Answers1

1

INOUT is not supported, only IN or OUT, where IN is the default.

Claus Ibsen
  • 56,060
  • 7
  • 50
  • 65