| Package | Description |
|---|---|
| org.jdbi.v3.sqlobject |
SQL Objects
|
| org.jdbi.v3.sqlobject.statement |
The
sqlobject.statement annotations declare the type of statement
that a SqlObject method should create, such as a @SqlQuery to return rows or a
@SqlUpdate to modify rows and return the modification count. |
| Modifier and Type | Class and Description |
|---|---|
interface |
CreateSqlObject
Use this annotation on a sql object method to create a new sql object with the same underlying handle as the sql
object the method is invoked on.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
SqlBatch
Annotate a method to indicate that it will create and execute a SQL batch.
|
interface |
SqlCall
Support for stored proc invocation.
|
interface |
SqlQuery
Used to indicate that a method should execute a query.
|
interface |
SqlUpdate
Used to indicate that a method should execute a non-query sql statement.
|
Copyright © 2018. All rights reserved.