Uses of Class
org.jdbi.v3.sqlobject.SqlOperation
-
Packages that use SqlOperation Package Description org.jdbi.v3.sqlobject SQL Objectsorg.jdbi.v3.sqlobject.statement Thesqlobject.statementannotations declare the type of statement that a SqlObject method should create, such as a@SqlQueryto return rows or a@SqlUpdateto modify rows and return the modification count. -
-
Uses of SqlOperation in org.jdbi.v3.sqlobject
Classes in org.jdbi.v3.sqlobject with annotations of type SqlOperation Modifier and Type Class Description interfaceCreateSqlObjectUse 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
Classes in org.jdbi.v3.sqlobject.statement with annotations of type SqlOperation Modifier and Type Class Description interfaceSqlBatchAnnotate a method to indicate that it will create and execute a SQL batch.interfaceSqlCallSupport for stored proc invocation.interfaceSqlQueryUsed to indicate that a method should execute a query.interfaceSqlScriptAnnotate a method to indicate that it will execute one or more SQL statements.interfaceSqlScriptsHolder for repeatingSqlScripts.interfaceSqlUpdateUsed to indicate that a method should execute a non-query sql statement.
-