ResultSetMethods
Provides extension methods for java.sql.ResultSet
.
Value members
Concrete methods
Maps remaining rows of ResultSet building a collection using elements returned from map function.
Maps remaining rows of ResultSet building a collection using elements returned from map function.
- Value Params
- f
map function
Folds remaining rows of ResultSet to single value using given initial value and binary operator.
Folds remaining rows of ResultSet to single value using given initial value and binary operator.
- Value Params
- init
initial value
- op
binary operator
Invokes supplied function for each remaining row of ResultSet.
Invokes supplied function for each remaining row of ResultSet.
- Value Params
- f
function
Gets column value in current row.
Gets column value in current row.
- Type Params
- T
type of value to return
- Value Params
- index
column index
Gets column value in current row.
Gets column value in current row.
- Type Params
- T
type of value to return
- Value Params
- label
column label
Gets column value in current row if value is not null.
Gets column value in current row if value is not null.
- Type Params
- T
type of value to return
- Value Params
- index
column index
Gets column value in current row if value is not null.
Gets column value in current row if value is not null.
- Type Params
- T
type of value to return
- Value Params
- label
column label
Gets column value in current row, or returns default if value is null.
Gets column value in current row, or returns default if value is null.
- Type Params
- T
type of value to return
- Value Params
- default
default value
- index
column index
Gets column value in current row, or returns default if value is null.
Gets column value in current row, or returns default if value is null.
- Type Params
- T
type of value to return
- Value Params
- default
default value
- label
column label
Maps remaining rows of ResultSet using supplied function.
Maps remaining rows of ResultSet using supplied function.
- Value Params
- f
map function