Uses of Class
org.jdbi.v3.core.Jdbi
Packages that use Jdbi
Package
Description
The 'core' package hosts the top level interface into jdbi core.
The
config classes define a configuration registry starting from
each Jdbi instance.
The
extension classes allow you to extend Jdbi's
functionality by declaring interface types that may attach to Handle
instances.
The
h2 package adds vendor support for the H2 embeddable pure Java database implementation.
The
spi package includes entrypoints to extending Jdbi
instances with your own custom functionality.-
Uses of Jdbi in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return JdbiModifier and TypeMethodDescriptionstatic JdbiCreates a newJdbiinstance from a database URL.static JdbiCreates a newJdbiinstance from a database URL.static JdbiJdbi.create(String url, Properties properties) Creates a newJdbiinstance from a database URL.static JdbiJdbi.create(Connection connection) Creates a newJdbiobject from aConnection.static JdbiJdbi.create(DataSource dataSource) Creates a newJdbiobject from aDataSource.static JdbiJdbi.create(ConnectionFactory connectionFactory) Factory used to allow for obtaining a Connection in a customized manner.Handle.getJdbi()Returns theJdbiobject used to create this handle.Jdbi.installPlugin(JdbiPlugin plugin) Install a givenJdbiPlugininstance that will configure any providedHandleinstances.Jdbi.installPlugins()Use theServiceLoaderAPI to detect and install plugins automagically.Jdbi.setHandleCallbackDecorator(HandleCallbackDecorator handleCallbackDecorator) Specify theHandleCallbackDecoratorinstance to use.Jdbi.setStatementBuilderFactory(StatementBuilderFactory factory) Allows customization of how prepared statements are created.Jdbi.setTransactionHandler(TransactionHandler handler) Specify the TransactionHandler instance to use. -
Uses of Jdbi in org.jdbi.v3.core.async
Methods in org.jdbi.v3.core.async with parameters of type Jdbi -
Uses of Jdbi in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type Jdbi -
Uses of Jdbi in org.jdbi.v3.core.extension
Methods in org.jdbi.v3.core.extension that return Jdbi -
Uses of Jdbi in org.jdbi.v3.core.h2
Methods in org.jdbi.v3.core.h2 with parameters of type Jdbi -
Uses of Jdbi in org.jdbi.v3.core.spi
Methods in org.jdbi.v3.core.spi with parameters of type JdbiModifier and TypeMethodDescriptiondefault voidJdbiPlugin.customizeJdbi(Jdbi jdbi) Configure customizations global to any object managed by this Jdbi.