StatementMethods
Provides extension methods for java.sql.Statement
.
- See also:
PreparedStatementMethods
Value members
Concrete methods
Executes SQL and passes Execution to supplied function.
Executes SQL and passes Execution to supplied function.
- Value parameters:
- f
function
- sql
SQL statement
Executes query and maps first row of ResultSet using supplied function.
Executes query and maps first row of ResultSet using supplied function.
If the result set is not empty, and if the supplied function's return
value is not null, then Some
value is returned; otherwise, None
is
returned.
- Value parameters:
- f
function
- sql
SQL query
Executes query and builds a collection using the elements mapped from each row of ResultSet.
Executes query and builds a collection using the elements mapped from each row of ResultSet.
- Value parameters:
- f
map function
- params
parameters
- sql
SQL query
Executes query and invokes supplied function for each row of ResultSet.
Executes query and invokes supplied function for each row of ResultSet.
- Value parameters:
- f
function
- sql
SQL query
Executes query and maps each row of ResultSet using supplied function.
Executes query and maps each row of ResultSet using supplied function.
- Value parameters:
- f
map function
- params
parameters
- sql
SQL query