| Package | Description |
|---|---|
| org.jdbi.v3.core |
The 'core' package hosts the top level interface into jdbi core.
|
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Method and Description |
|---|---|
Call |
Handle.createCall(String sql)
Create a call to a stored procedure.
|
| Modifier and Type | Method and Description |
|---|---|
Call |
Call.registerOutParameter(int position,
int sqlType)
Register a positional output parameter
|
Call |
Call.registerOutParameter(int position,
int sqlType,
CallableStatementMapper mapper)
Register a positional output parameter
|
Call |
Call.registerOutParameter(String name,
int sqlType)
Register a named output parameter
|
Call |
Call.registerOutParameter(String name,
int sqlType,
CallableStatementMapper mapper)
Register a named output parameter
|
Copyright © 2019. All rights reserved.