nkiesel
02/03/2017, 2:07 AMtry (Connection c = getConnection(); ResultSet rs = getRS(c, query) { while (rs.next()) { ... } }elizarov
02/03/2017, 8:09 AMwithConnection {
    forEachRow(query) { 
         // do something with it
    }
    forEachRow(anotherQuery) { 
         // do something with it
    }
}elizarov
02/03/2017, 8:10 AM