Uses of Class
org.jdbi.v3.core.statement.Query
Packages that use Query
Package
Description
The 'core' package hosts the top level interface into jdbi core.
The
statement
package provides most of the Fluent API
to drive statement execution.-
Uses of Query in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return QueryModifier and TypeMethodDescriptionHandle.createQuery
(CharSequence sql) Return a Query instance that executes a statement with bound parameters and maps the result set into Java types.Handle.createQuery
(String sql) Return a Query instance that executes a statement with bound parameters and maps the result set into Java types.Handle.select
(CharSequence sql, Object... args) Convenience method which creates a query with the given positional arguments.Convenience method which creates a query with the given positional arguments. -
Uses of Query in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return QueryModifier and TypeMethodDescriptionQuery.concurrentUpdatable()
Specify that the result set should be concurrent updatable.Query.setFetchSize
(int fetchSize) Specify the fetch size for the query.Query.setMaxFieldSize
(int maxFields) Specify the maximum field size in the result set.Query.setMaxRows
(int maxRows) Specify the maximum number of rows the query is to return.