본문 바로가기
LANG/java

java / iBatis 에서 여러 query 한번에 실행 트랜잭션 내에 포함

by 하하IT 2020. 4. 24.

<!--

주석

-->

<insert id="InsertTngma_hist" parameterClass="java.util.Map">

{call

        declare

        begin

 

    INSERT INTO T1 VALUES (1,2,'3');

    INSERT INTO T2 VALUES (1,2,'3');

    DELETE  FROM T3 WHERE ID=#aaa#;

            sms.sp_test01@ORACLE1_sms(#aaa#);

 

 

        end

    }

</insert>

</sqlMap>

'LANG > java' 카테고리의 다른 글

javax.net.ssl.SSLHandshakeException: DH ServerKeyExchange does not comply to algorithm constraints  (0) 2023.09.18
Code Conventions  (0) 2020.04.27
ANT 관련팁들  (0) 2020.04.27
java / sendmail  (0) 2020.04.19
java / encodingTest  (0) 2020.04.16