| Interface | Description |
|---|---|
| JdbcCall |
A SQL call operation.
|
| JdbcOperations |
A high level API for performing SQL operations using JDBC.
|
| JdbcQuery<T> |
An SQL query operation.
|
| JdbcUpdate |
An SQL update operation.
|
| ResultSetHandler<T> |
A closure that handles the result set returned by a query.
|
| RowMapper<T> |
A closure that maps a row in a
ResultSet to an instance of a given
type. |
| Class | Description |
|---|---|
| FluentJdbc |
A thread-safe
JdbcOperations implementation. |
| Parameter |
An SQL parameter injector.
|
| Exception | Description |
|---|---|
| SQLNonUniqueResultException |
An exception thrown when a single-row query returns more than one row.
|
| SQLNoResultException |
An exception thrown when a single-row query returns nothing at all.
|
| SQLNullStatementException |
An exception thrown when an
SQLSource contains no statements. |
| SQLRuntimeException |
A runtime exception that wraps an
SQLException. |
This package provides the public API FluentJdbc
and its supporting classes.
Copyright © 2014–2015 Carl Harris, Jr. All rights reserved.