main
[Groovy] SQL 사용 방법 본문
def delegator = (DelegatorInterface) Component.Accessor.getComponent(DelegatorInterface)
String helperName = delegator.getGroupHelperName("default")
Connection conn = ConnectionFactory.getConnection(helperName)
Sql sql = new Sql(conn)
def sqlStmt = "select * from table"
try{
sql.eachRow(sqlStmt){
user -> log.debug(user)
}
}catch{
}finally{
sql.close()
}
728x90
'ETC' 카테고리의 다른 글
[IDE/Eclipse] 이클립스 jdk 버전 변경 방법 (0) | 2022.11.08 |
---|---|
[Windows] hosts 파일에 수정하는 방법 (0) | 2022.10.04 |
[Atlassian-Bitbucket] 특정 브랜치에 링크된 Jira 이슈 찾는 API (0) | 2022.09.27 |
[Excel] IP 세번째 주소까지 추출 (0) | 2022.09.27 |
[Flutter] Flutter 다운로드 (0) | 2022.09.27 |
Comments