CallableStatement란?
- CallableStatement interface는 Database에 미리 컴파일 되어 있는 Stored Procedure를 실행하기 위해 사용된다.
CallableStatement 객체는 Connection 객체의 prepareCall() 메소드를 호출하여 얻을 수 있다.
- stored Procedure를 호출하는 형식은 다음과 같다.
Function 호출 |
Procedure 호출 |
{ ? = call [procedur name] [<arg1>, <arg2>, ...] |
{ call [procedur name] [<arg1>, <arg2>, ...] |
{ ? = call pro_name ?, ? , ? } |
{ call sp_cancel_1031 (?, ?, ?, ? ) } |
|
[그림] CallableStatement 사용 예
[출처] [JDBC] CallableStatement|작성자 쥰세이
'JAVA' 카테고리의 다른 글
자바 암호화 RSA2 (0) | 2013.01.16 |
---|---|
전방향 전용 결과 집합에 부적합한 작업이 수행되었습니다 : last (0) | 2012.11.07 |
jstl if null (0) | 2012.09.26 |
만 나이 계산 (2) | 2012.09.14 |
httpsessionlistener (0) | 2012.09.03 |