Uses of Class
org.jdbi.v3.core.statement.Call
-
Packages that use Call 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 Call in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return Call Modifier and Type Method Description CallHandle. createCall(java.lang.CharSequence sql)Create a call to a stored procedure.CallHandle. createCall(java.lang.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 Call Modifier and Type Method Description CallCall. registerOutParameter(int position, int sqlType)Register a positional output parameter.CallCall. registerOutParameter(int position, int sqlType, CallableStatementMapper mapper)Register a positional output parameter.CallCall. registerOutParameter(java.lang.String name, int sqlType)Register a named output parameter.CallCall. registerOutParameter(java.lang.String name, int sqlType, CallableStatementMapper mapper)Register a named output parameter. -
Uses of Call in org.jdbi.v3.sqlobject.statement.internal
Fields in org.jdbi.v3.sqlobject.statement.internal with type parameters of type Call Modifier and Type Field Description private java.util.function.BiFunction<OutParameters,Call,?>SqlCallHandler. resultTransformerMethods in org.jdbi.v3.sqlobject.statement.internal that return Call Modifier and Type Method Description (package private) CallSqlCallHandler. createStatement(Handle handle, java.lang.String locatedSql)Methods in org.jdbi.v3.sqlobject.statement.internal that return types with arguments of type Call Modifier and Type Method Description private java.util.function.BiFunction<OutParameters,Call,?>SqlCallHandler. createResultTransformer(java.lang.Class<?> sqlObjectType, java.lang.reflect.Method method)Methods in org.jdbi.v3.sqlobject.statement.internal with parameters of type Call Modifier and Type Method Description (package private) voidSqlCallHandler. configureReturner(Call call, SqlObjectStatementConfiguration cfg)
-