티스토리 뷰
statementType="CALLABLE" 로 지정하면
프로시저에서 out로 지정한 값들이 insertBoard를 요청할때 사용한 파라미터 map에 담긴다.
<insert id="insertBoard" statementType="CALLABLE" parameterType="map">
{
call usp_insertGifticon(
#{no, javaType=int, jdbcType=INTEGER, mode=IN}
, #{title, javaType=string, jdbcType=VARCHAR, mode=IN}
, #{startDate, javaType=date, jdbcType=DATE, mode=IN}
, #{regDate, javaType=date, jdbcType=DATE, mode=OUT}
, #{resultCode, javaType=int, jdbcType=INTEGER, mode=OUT} )
}
</insert>
'MyBatis' 카테고리의 다른 글
[mybatis] String 값 비교 (0) | 2021.04.08 |
---|---|
[MyBatis] 실행 쿼리문 추출 (0) | 2019.10.02 |