Uses of Class
org.jdbi.v3.core.statement.Call
Packages that use 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
Methods in org.jdbi.v3.core that return CallModifier 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
Methods in org.jdbi.v3.core.statement that return CallModifier 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.