Closed lako12 closed 1 year ago
I wanted to understand why it doesn't recognize
PLS_INTEGER
automatically like it does for other types.
I believe it's because PLS_INTEGER
is not a standard SQL type, but @jhoeller can likely provide additional information.
Hi,
@sbrannen @jhoeller any updates?
Thanks
Hello,
I am using spring boot 2.7.4. I'm trying to call this Oracle function:
To do this, I'm using
SimpleJdbcCall
:The problem is that I get this error:
However if I change the return type inside my function from
PLS_INTEGER
toNUMBER
, it works fine.Is it a bug? I don't know if I'm doing something wrong.
I know I can use parameter declaration, but I wanted to understand why it doesn't recognize
PLS_INTEGER
automatically like it does for other types.Thanks