Uses of Class
org.jdbi.v3.core.statement.Call
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 Call in org.jdbi.v3.core
Modifier and TypeMethodDescriptionHandle.createCall
(CharSequence sql) Create a call to a stored procedure.Handle.createCall
(String sql) Create a call to a stored procedure. -
Uses of Call in org.jdbi.v3.core.statement
Modifier and TypeMethodDescriptionCall.concurrentUpdatable()
Specify that the result set should be concurrent updatable.Call.registerOutParameter
(int position, int sqlType) Register a positional output parameter.Call.registerOutParameter
(int position, int sqlType, CallableStatementMapper mapper) Register a positional output parameter.Call.registerOutParameter
(String name, int sqlType) Register a named output parameter.Call.registerOutParameter
(String name, int sqlType, CallableStatementMapper mapper) Register a named output parameter.Call.setFetchSize
(int fetchSize) Specify the fetch size for the call.Call.setMaxFieldSize
(int maxFields) Specify the maximum field size in the result set.Call.setMaxRows
(int maxRows) Specify the maximum number of rows the call is to return.