We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a98c8d commit a31d396Copy full SHA for a31d396
src/test/java/org/apache/ibatis/submitted/sptests/SPMapper.xml
@@ -19,7 +19,10 @@
19
{call xxx (parm1, parm2)}
20
3. Must set the MODE of all parameters (IN, OUT, INOUT)
21
4. All IN, OUT, and INOUT parameters must be a part of the
22
- parameterType or parameterMap (discouraged).
+ parameterType or parameterMap (discouraged). The only exception
23
+ is if you are using a Map as a parameter object. In that case you
24
+ do not need to add OUT parameters to the map before calling, MyBatis
25
+ will add them for you automatically.
26
5. resultType or resultMap (more typically) is only used if
27
the procedure returns a result set. IMPORTANT: Oracle ref
28
cursors are usually returned as parameters, NOT directly
0 commit comments