| Package | Description |
|---|---|
| org.soulwing.jdbc |
JDBC facade and supporting classes
|
| Modifier and Type | Method and Description |
|---|---|
static Parameter |
Parameter.in(int type,
Object value)
Creates a new input parameter with the given value.
|
static Parameter |
Parameter.in(Object value)
Creates a new input parameter with the given value.
|
static Parameter |
Parameter.inout(int type,
Object value)
Creates a new input/output parameter with the given type.
|
static Parameter |
Parameter.out(int type)
Creates a new output parameter with the given type.
|
static Parameter |
Parameter.with(int type,
Object value)
Creates a new input parameter with the given value.
|
static Parameter |
Parameter.with(Object value)
Creates a new input parameter with the given value.
|
| Modifier and Type | Method and Description |
|---|---|
int |
JdbcUpdate.execute(Parameter... parameters)
Executes this update.
|
void |
JdbcQuery.execute(Parameter... parameters)
Executes the query, processing the result set with the configured handler.
|
boolean |
JdbcCall.execute(Parameter... parameters)
Executes this call operation.
|
List<T> |
JdbcQuery.retrieveList(Parameter... parameters)
Executes the query, retrieving the list of values for all matching rows.
|
T |
JdbcQuery.retrieveValue(Parameter... parameters)
Executes the query, retrieving a value representing the matching row
|
Copyright © 2014–2015 Carl Harris, Jr. All rights reserved.