Uses of Class
org.jdbi.v3.core.statement.Query
-
Packages that use Query Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.sqlobject.statement.internal -
-
Uses of Query in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return Query Modifier and Type Method Description QueryHandle. createQuery(java.lang.CharSequence sql)Return a Query instance that executes a statement with bound parameters and maps the result set into Java types.QueryHandle. createQuery(java.lang.String sql)Return a Query instance that executes a statement with bound parameters and maps the result set into Java types.QueryHandle. select(java.lang.CharSequence sql, java.lang.Object... args)Convenience method which creates a query with the given positional arguments.QueryHandle. select(java.lang.String sql, java.lang.Object... args)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 Query Modifier and Type Method Description QueryQuery. concurrentUpdatable()Specify that the result set should be concurrent updatable.QueryQuery. setFetchSize(int fetchSize)Specify the fetch size for the query.QueryQuery. setMaxFieldSize(int maxFields)Specify the maximum field size in the result set.QueryQuery. setMaxRows(int maxRows)Specify the maximum number of rows the query is to return. -
Uses of Query in org.jdbi.v3.sqlobject.statement.internal
Methods in org.jdbi.v3.sqlobject.statement.internal that return Query Modifier and Type Method Description (package private) QuerySqlQueryHandler. createStatement(Handle handle, java.lang.String locatedSql)Methods in org.jdbi.v3.sqlobject.statement.internal with parameters of type Query Modifier and Type Method Description (package private) voidSqlQueryHandler. configureReturner(Query query, SqlObjectStatementConfiguration cfg)
-