| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- 코딩
- 설정
- html5
- 잡토이
- MSSQL
- 운정
- 파주
- 예제
- 강좌
- 톰캣
- Spring Security
- 잡토이 메이킹 코딩 학원
- Unity
- 스크래치
- 오라클
- 유니티
- mysql
- 리브레캐드
- s4a
- 시작하기
- 아두이노
- tomcat
- jobtoy
- jsp
- 설치
- oracle
- Android
- librecad
- 라즈베리파이
- 안드로이드
- Today
- Total
랩제이
[mybatis] function 호출하고 리턴값 받기 본문
[mybatis] function 호출하고 리턴값 받기
String strResult1 = ordDetailService.funccall(ordDetail7);
@Override
public String funccall(T domain) throws Exception {
return this.crudMapper.funccall(domain);
}
<select id="funccall" parameterType="OrderDetail" statementType="CALLABLE">
{ #{ordCancelResult,jdbcType=VARCHAR, mode=OUT} = call F_WMS_CHANGE_ORDER_ITEM(#{ordSno ,jdbcType=VARCHAR, mode=IN},
#{ordGoodsId ,jdbcType=VARCHAR, mode=IN},
#{ordNums ,jdbcType=NUMERIC, mode=IN},
#{flag ,jdbcType=NUMERIC, mode=IN},
#{adminFlag ,jdbcType=NUMERIC, mode=IN})}
</select>
[mybatis] function 호출하고 리턴값 받기
'programming > ibatis mybatis' 카테고리의 다른 글
| [ibaitis] mysql select PROCEDURE (0) | 2017.01.23 |
|---|---|
| [mybatis] oracle insert 리턴값 받기 selectKey (0) | 2014.10.23 |
| [ibatis] in 조건 생성하기 (0) | 2013.10.17 |
| [ibatis] in 조건으로 delete 하기 (0) | 2013.10.02 |
| [ibatis] delete sql in 사용 (0) | 2013.06.30 |