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.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.