Created
December 27, 2022 05:50
-
-
Save potados99/f8c996781a51f554cadb07467136aa6a to your computer and use it in GitHub Desktop.
패키지 모듈 메소드 템플릿
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
내부에서 사용되는 패키지 모듈용 메소드 프로시저 템플릿입니다. | |
트랜잭션과 예외 처리기가 없습니다. | |
프로시저 이름, 아래 주석과 v_tag, v_summary, v_detail을 수정한 후 사용하여 주세요. | |
*/ | |
create | |
definer = MES_DHSol@`%` procedure Package_Module_Method( | |
) | |
comment '~하는 프로시저' | |
begin | |
/** | |
## 개요 | |
텅 빈 프로시저 템플릿 입니다. 수정해주세요. | |
## 파라미터 | |
다음 파라미터가 필요합니다: | |
- | |
## 기여 | |
- 작성: 송병준 | |
- 문서: 송병준 | |
*/ | |
################################################################ | |
# 선언과 초기화 | |
################################################################ | |
declare v_tag varchar(255) default 'Package_Module_Method'; | |
declare v_summary varchar(255) default '무엇을 무엇'; | |
declare v_detail varchar(255) default '무엇을 무엇 하여 이렇게 무엇'; | |
-- TODO 선언은 여기에 | |
call log_info(v_tag, concat( | |
v_summary, '하는 내부 프로시저에 진입하였습니다. ', | |
v_detail, '합니다.' | |
)); | |
-- TODO 초기화는 여기에 | |
################################################################ | |
# 로직 전개 시작 | |
################################################################ | |
본처리: | |
begin | |
-- TODO 로직은 여기에 | |
end; | |
call log_info(v_tag, concat( | |
v_summary, '하는 내부 프로시저를 마칩니다.' | |
)); | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment