Home > Mobile >  Calling Oracle Stored Procedure from R2DBC
Calling Oracle Stored Procedure from R2DBC

Time:08-09

I am trying to call an Oracle stored procedure from Spring Data R2DBC. I have currently set up querying either by annotation or R2DBC entity template and those work fine. However, I have not been able to call a proc with input/output parameters.

I saw some documentation mentioning support for procedure calls in R2DBC but have not found any concrete examples on how it is done. Any help or link to documentation or examples would be greatly appreciated.

CodePudding user response:

The documentation for how to do procedural-calls can be found in the readme on github for the oracle-r2dbc driver:

procedural calls

  • Related