Performs the given SQL query calling the given Closure with each row of the result set. The row will be a GroovyResultSet which is a ResultSet that supports accessing the fields using property style notation and ordinal index values. Example usages: sql.eachRow("s
(String sql, @ClosureParams(value=SimpleType.class, options="groovy.sql.GroovyResultSet") Closure closure)
| 1425 | * @throws SQLException if a database access error occurs |
| 1426 | */ |
| 1427 | public void eachRow(String sql, @ClosureParams(value=SimpleType.class, options="groovy.sql.GroovyResultSet") Closure closure) throws SQLException { |
| 1428 | eachRow(sql, (Closure) null, closure); |
| 1429 | } |
| 1430 | |
| 1431 | /** |
| 1432 | * Performs the given SQL query calling the given <code>closure</code> with each row of the result set starting at |
nothing calls this directly
no test coverage detected