Today's fun with Grails
Mon Dec 15 13:54:00 CST 2008
def listthem = { WebAppService.findAll().each { print "${it.name}-${it.status}," } }
listthem()
println 'Deleting ww36 records' WebAppService.findAllByName('ww36').each { it.delete() }
listthem()
Mon Dec 15 13:54:00 CST 2008
def listthem = { WebAppService.findAll().each { print "${it.name}-${it.status}," } }
listthem()
println 'Deleting ww36 records' WebAppService.findAllByName('ww36').each { it.delete() }
listthem()