-
A hint which for JDBC translates to the Statement.fetchSize().
Set the index of the first row of the results to return.
Set a label that can be put on performance metrics that are collected.
Set the maximum number of query results to return.
Set a null parameter by position.
Set a null parameter by name.
Bind the parameter by its index position (1 based like JDBC).
Set the next bind parameter by position.
Bind the named parameter value.
Set one of more positioned parameters.
Set a timeout on this query.
Look to execute a native sql query that does not return beans but instead
returns SqlRow or direct access to ResultSet.
Look to execute a native sql query that does not return beans but instead
returns SqlRow or uses
RowMapper
.
void
Execute the SqlQuery iterating a row at a time.
void
Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through.
Execute the sql query returning a list of MapBean.
Execute the sql query returning a single MapBean or null.