Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
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
Tags
more
Archives
Today
Total
관리 메뉴

main

[Groovy] SQL 사용 방법 본문

ETC

[Groovy] SQL 사용 방법

1984 2022. 10. 3. 17:24

 

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
Comments