Uses of Annotation Type
org.jdbi.v3.sqlobject.SqlOperation
Package
Description
SQL Objects
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.-
Uses of SqlOperation in org.jdbi.v3.sqlobject
Modifier and TypeClassDescription@interface
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. -
Uses of SqlOperation in org.jdbi.v3.sqlobject.statement
Modifier and TypeClassDescription@interface
Annotate a method to indicate that it will create and execute a SQL batch.@interface
Support for stored proc invocation.@interface
Used to indicate that a method should execute a query.@interface
Annotate a method to indicate that it will execute one or more SQL statements.@interface
Holder for repeatingSqlScript
s.@interface
Used to indicate that a method should execute a non-query sql statement.