-
Notifications
You must be signed in to change notification settings - Fork 19
ServerSideStoredProcedure
GangCheng edited this page Sep 28, 2024
·
4 revisions
-
mybatis-r2dbcsupportin/out/inoutparameters as usual. - When using
out/inoutparameters- 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'Tsupport receiving returned row data and mapping the data to the mapper method's parameter as the original mybaits usually does.
- if there is no row data returned, the mapper method's return type should be
- The procedure mapper only test with
r2dbc-mariadbdriver, other drivers haven't been tested. The definition sql statements of procedure are located in init-mariadb.sql - Procedure Mapper
- Procedure Mapper Tests
- Associated Concept
- Basic Operation Instruction
- Integration with Spring Framework