Uses of Class
org.jdbi.v3.core.Jdbi
-
Packages that use Jdbi Package Description org.jdbi.v3.cache.noop A non-caching cache implementation.org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.async org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.extension Theextensionclasses allow you to extendJdbi's functionality by declaring interface types that may attach toHandleinstances.org.jdbi.v3.core.h2 Theh2package adds vendor support for the H2 embeddable pure Java database implementation.org.jdbi.v3.core.internal Utility classes used internally by Jdbi.org.jdbi.v3.core.spi Thespipackage includes entrypoints to extendingJdbiinstances with your own custom functionality.org.jdbi.v3.gson2 org.jdbi.v3.guava guavaprovides extra types that are commonly needed beyond built in JDK types.org.jdbi.v3.guice Google Guiceintegration.org.jdbi.v3.guice.internal Internal classes for the Guice integration, do not use directly outside Jdbi.org.jdbi.v3.jackson2 org.jdbi.v3.jodatime2 joda-timeprovides improved date and time types to pre-Java 8 applications.org.jdbi.v3.jpa Thejpaplugin provides minimal support for discovering JPA annotations likeColumn.org.jdbi.v3.json org.jdbi.v3.postgis org.jdbi.v3.postgres Thepostgresplugin provides improved support forjava.time,hstore,uuid, andenumtypes when configured with a recent Postgres database server.org.jdbi.v3.sqlite3 Thesqliteplugin provides improved support forjava.net.URL.org.jdbi.v3.sqlobject SQL Objectsorg.jdbi.v3.vavr vavris a functional programming library for the JVM. -
-
Uses of Jdbi in org.jdbi.v3.cache.noop
Methods in org.jdbi.v3.cache.noop with parameters of type Jdbi Modifier and Type Method Description voidNoopCachePlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.core
Fields in org.jdbi.v3.core declared as Jdbi Modifier and Type Field Description private JdbiHandle. jdbiprivate JdbiLazyHandleSupplier. jdbiMethods in org.jdbi.v3.core that return Jdbi Modifier and Type Method Description static JdbiJdbi. create(java.lang.String url)Creates a newJdbiinstance from a database URL.static JdbiJdbi. create(java.lang.String url, java.lang.String username, java.lang.String password)Creates a newJdbiinstance from a database URL.static JdbiJdbi. create(java.lang.String url, java.util.Properties properties)Creates a newJdbiinstance from a database URL.static JdbiJdbi. create(java.sql.Connection connection)Creates a newJdbiobject from aConnection.static JdbiJdbi. create(javax.sql.DataSource dataSource)Creates a newJdbiobject from aDataSource.static JdbiJdbi. create(ConnectionFactory connectionFactory)Factory used to allow for obtaining a Connection in a customized manner.JdbiConstantHandleSupplier. getJdbi()JdbiHandle. getJdbi()Returns theJdbiobject used to create this handle.JdbiLazyHandleSupplier. getJdbi()JdbiJdbi. installPlugin(JdbiPlugin plugin)Install a givenJdbiPlugininstance that will configure any providedHandleinstances.JdbiJdbi. installPlugins()Use theServiceLoaderAPI to detect and install plugins automagically.JdbiJdbi. setStatementBuilderFactory(StatementBuilderFactory factory)Allows customization of how prepared statements are created.JdbiJdbi. setTransactionHandler(TransactionHandler handler)Specify the TransactionHandler instance to use.Methods in org.jdbi.v3.core with parameters of type Jdbi Modifier and Type Method Description (package private) static HandleHandle. createHandle(Jdbi jdbi, Cleanable connectionCleaner, TransactionHandler transactionHandler, StatementBuilder statementBuilder, java.sql.Connection connection)Constructors in org.jdbi.v3.core with parameters of type Jdbi Constructor Description Handle(Jdbi jdbi, Cleanable connectionCleaner, TransactionHandler transactionHandler, StatementBuilder statementBuilder, java.sql.Connection connection)LazyHandleSupplier(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.core.async
Fields in org.jdbi.v3.core.async declared as Jdbi Modifier and Type Field Description private JdbiJdbiExecutorImpl. jdbiMethods in org.jdbi.v3.core.async with parameters of type Jdbi Modifier and Type Method Description static JdbiExecutorJdbiExecutor. create(Jdbi jdbi, java.util.concurrent.Executor executor)Create aJdbiExecutor.Method parameters in org.jdbi.v3.core.async with type arguments of type Jdbi Modifier and Type Method Description protected java.util.concurrent.CompletionStage<java.lang.Void>AbstractJdbiExecutor. useExecute(CheckedConsumer<Jdbi> callback)Single method through which all other use* methods converge.protected abstract <T> java.util.concurrent.CompletionStage<T>AbstractJdbiExecutor. withExecute(CheckedFunction<Jdbi,T> callback)Single method through which all other with* methods converge.protected <T> java.util.concurrent.CompletionStage<T>JdbiExecutorImpl. withExecute(CheckedFunction<Jdbi,T> callback)Make sure to run the callback in a thread supplied by the executorConstructors in org.jdbi.v3.core.async with parameters of type Jdbi Constructor Description JdbiExecutorImpl(Jdbi jdbi, java.util.concurrent.Executor executor)Construct aJdbiExecutor. -
Uses of Jdbi in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type Jdbi Modifier and Type Method Description voidConfiguringPlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.core.extension
Methods in org.jdbi.v3.core.extension that return Jdbi Modifier and Type Method Description JdbiHandleSupplier. getJdbi()Returns the owning Jdbi instance. -
Uses of Jdbi in org.jdbi.v3.core.h2
Methods in org.jdbi.v3.core.h2 with parameters of type Jdbi Modifier and Type Method Description voidH2DatabasePlugin. customizeJdbi(Jdbi db) -
Uses of Jdbi in org.jdbi.v3.core.internal
Methods in org.jdbi.v3.core.internal with parameters of type Jdbi Modifier and Type Method Description <E> EOnDemandExtensions. create(Jdbi jdbi, java.lang.Class<E> extensionType, java.lang.Class<?>... extraTypes)private java.lang.ObjectOnDemandExtensions. createProxy(Jdbi jdbi, java.lang.Class<?> extensionType, java.lang.Class<?>... extraTypes)java.util.Optional<java.lang.Object>OnDemandExtensions.Factory. onDemand(Jdbi jdbi, java.lang.Class<?> extensionType, java.lang.Class<?>... extraTypes) -
Uses of Jdbi in org.jdbi.v3.core.spi
Methods in org.jdbi.v3.core.spi with parameters of type Jdbi Modifier and Type Method Description default voidJdbiPlugin. customizeJdbi(Jdbi jdbi)Configure customizations global to any object managed by this Jdbi. -
Uses of Jdbi in org.jdbi.v3.gson2
Methods in org.jdbi.v3.gson2 with parameters of type Jdbi Modifier and Type Method Description voidGson2Plugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.guava
Methods in org.jdbi.v3.guava with parameters of type Jdbi Modifier and Type Method Description voidGuavaPlugin. customizeJdbi(Jdbi db) -
Uses of Jdbi in org.jdbi.v3.guice
Methods in org.jdbi.v3.guice with parameters of type Jdbi Modifier and Type Method Description voidGuiceJdbiCustomizer. customize(Jdbi jdbi)Customize theJdbiinstance passed in. -
Uses of Jdbi in org.jdbi.v3.guice.internal
Methods in org.jdbi.v3.guice.internal that return Jdbi Modifier and Type Method Description JdbiInternalGuiceJdbiFactory. get()Methods in org.jdbi.v3.guice.internal with parameters of type Jdbi Modifier and Type Method Description voidInternalGuiceJdbiCustomizer. customize(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.jackson2
Methods in org.jdbi.v3.jackson2 with parameters of type Jdbi Modifier and Type Method Description voidJackson2Plugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.jodatime2
Methods in org.jdbi.v3.jodatime2 with parameters of type Jdbi Modifier and Type Method Description voidJodaTimePlugin. customizeJdbi(Jdbi db) -
Uses of Jdbi in org.jdbi.v3.jpa
Methods in org.jdbi.v3.jpa with parameters of type Jdbi Modifier and Type Method Description voidJpaPlugin. customizeJdbi(Jdbi db) -
Uses of Jdbi in org.jdbi.v3.json
Methods in org.jdbi.v3.json with parameters of type Jdbi Modifier and Type Method Description voidJsonPlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.postgis
Methods in org.jdbi.v3.postgis with parameters of type Jdbi Modifier and Type Method Description voidPostgisPlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.postgres
Methods in org.jdbi.v3.postgres with parameters of type Jdbi Modifier and Type Method Description voidPostgresPlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.sqlite3
Methods in org.jdbi.v3.sqlite3 with parameters of type Jdbi Modifier and Type Method Description voidSQLitePlugin. customizeJdbi(Jdbi jdbi) -
Uses of Jdbi in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject with parameters of type Jdbi Modifier and Type Method Description voidSqlObjectPlugin. customizeJdbi(Jdbi db)java.util.Optional<java.lang.Object>GeneratorSqlObjectFactory. onDemand(Jdbi jdbi, java.lang.Class<?> extensionType, java.lang.Class<?>... extraTypes) -
Uses of Jdbi in org.jdbi.v3.vavr
Methods in org.jdbi.v3.vavr with parameters of type Jdbi Modifier and Type Method Description voidVavrPlugin. customizeJdbi(Jdbi jdbi)
-