Skip to content

ServerSideStoredProcedure

GangCheng edited this page Jan 21, 2024 · 2 revisions

OutParameters

  • mybatis-r2dbc support in/out/inout parameters as usual.
  • When using out/inout parameters
    • if there is no row data returned, the mapper method's return type should be Mono<Void>.
    • if there are row data returned, the mapper method's return type should be the target result with result mapping.
    • it DOESN't support receiving returned row data then mapping data to mapper method's parameter as the original mybaits behaviour.

Procedure