Uses of Interface
org.jdbi.v3.core.extension.HandleSupplier
Package
Description
The
extension
classes allow you to extend Jdbi
's
functionality by declaring interface types that may attach to Handle
instances.SQL Objects
-
Uses of HandleSupplier in org.jdbi.v3.core.extension
Modifier and TypeMethodDescription<E> E
ExtensionFactory.attach
(Class<E> extensionType, HandleSupplier handle) Attaches an extension type.<E> Optional<E>
Extensions.findFor
(Class<E> extensionType, HandleSupplier handle) Create an extension instance if we have a factory that understands the extension type which has access to aHandle
through aHandleSupplier
. -
Uses of HandleSupplier in org.jdbi.v3.sqlobject
Modifier and TypeMethodDescription<E> E
SqlObjectFactory.attach
(Class<E> extensionType, HandleSupplier handle) Create a sql object of the specified type bound to this handle.Handler.invoke
(Object target, Object[] args, HandleSupplier handle) Executes a SQL Object method, and returns the result.