I am new to grails and groovy. Can anyone please explain to me the difference between these two groovy sql methods
sql.eachRow sql.rows
Also, w
They differ in signature only - both support result sets paging, so both will be efficient. Use whichever fits your code.