Package | Description |
---|---|
org.skife.jdbi.v2 |
Start with
DBI and Handle |
org.skife.jdbi.v2.tweak |
Interfaces used to alter JDBI's behavior
|
org.skife.jdbi.v2.unstable.oracle |
Convenience classes when working with Oracle databases.
|
org.skife.jdbi.v2.util |
Classes provided as a convenience to users of the library.
|
Modifier and Type | Class and Description |
---|---|
class |
BaseResultSetMapper<ResultType>
Convenience class which allows definition of result set mappers which getAttribute the
row as a map instead of a result set.
|
class |
BeanMapper<T>
A result set mapper which maps the fields in a statement into a JavaBean.
|
class |
DefaultMapper |
class |
ReflectionBeanMapper<T>
A result set mapper which maps the fields in a statement into a JavaBean.
|
Modifier and Type | Method and Description |
---|---|
ResultSetMapper |
ResultSetMapperFactory.mapperFor(Class type,
StatementContext ctx)
Supplies a result set mapper which will map result sets to type
|
ResultSetMapper |
PrimitivesMapperFactory.mapperFor(Class type,
StatementContext ctx) |
Modifier and Type | Method and Description |
---|---|
<GeneratedKeyType> |
Update.executeAndReturnGeneratedKeys(ResultSetMapper<GeneratedKeyType> mapper)
Execute the statement and returns any auto-generated keys.
|
<T> Query<T> |
Query.map(ResultSetMapper<T> mapper) |
void |
Query.registerMapper(ResultSetMapper m) |
void |
DBI.registerMapper(ResultSetMapper mapper)
Register a result set mapper which will have its parameterized type inspected to determine what it maps to
Will be used with
Query.mapTo(Class) for registered mappings. |
void |
Handle.registerMapper(ResultSetMapper mapper)
Register a result set mapper which will have its parameterized type inspected to determine what it maps to
Will be used with
Query.mapTo(Class) for registered mappings. |
Modifier and Type | Method and Description |
---|---|
ResultSetMapper |
BeanMapperFactory.mapperFor(Class type,
StatementContext ctx) |
Constructor and Description |
---|
OracleReturning(ResultSetMapper<ResultType> mapper)
Deprecated.
Provide a mapper which knows how to do positional access, sadly the
BeanMapper uses the names in the result set |
Modifier and Type | Class and Description |
---|---|
class |
BigDecimalMapper |
class |
BooleanMapper
Convenience ResultSetMapper for extracting a single value result
from a query.
|
class |
ByteArrayMapper |
class |
ByteMapper |
class |
DoubleMapper |
class |
FloatMapper |
class |
IntegerMapper
Convenience ResultSetMapper for extracting a single value result
from a query.
|
class |
LongMapper
Convenience ResultSetMapper for extracting a single value result
from a query.
|
class |
ShortMapper |
class |
StringMapper
Convenience ResultSetMapper for extracting a single value result
from a query.
|
class |
TimestampMapper
Convenience ResultSetMapper for extracting a single value result
from a query.
|
class |
TypedMapper<T>
Convenience base class for implementing typed result set mappers.
|
class |
URLMapper |
Copyright © 2023. All rights reserved.