Home > database >  Mybatis call a stored procedure, return two cursor result set
Mybatis call a stored procedure, return two cursor result set

Time:09-19

PROCEDURE PROC_QUERY_RETAILER_RATE (PI_SELLER_CODE IN VARCHAR2,
PO_COMM_PRO_CUR OUT SYS_REFCURSOR,
PO_CUR OUT SYS_REFCURSOR);
There are two output cursor, please use mybatis, resultMap can only be set once, what should I do? The two output cursor return type is the List, but one is List And the other one is List , A and B in A different field, how to do excuse me?
  • Related