Uses of Class
org.jdbi.v3.core.JdbiException
Packages that use JdbiException
Package
Description
The 'core' package hosts the top level interface into jdbi core.
The
collector
package reduces the mapped rows of the result set
into a Stream Collector to produce the final aggregated result.
The
extension
classes allow you to extend Jdbi
's
functionality by declaring interface types that may attach to Handle
instances.mapper
s take the JDBC ResultSet and produce Java results.result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.
The
statement
package provides most of the Fluent API
to drive statement execution.
The
transaction
package implements the strategy
Jdbi
uses to open and close transactions.
The
jpa
plugin provides minimal support for discovering JPA
annotations like Column
.
The
postgres
plugin provides improved support for
java.time
, hstore
, uuid
, and enum
types when configured with a recent Postgres database server.SQL Objects
-
Uses of JdbiException in org.jdbi.v3.core
Subclasses of JdbiException in org.jdbi.v3.coreModifier and TypeClassDescriptionclass
Thrown when an exception occurs while attempting to close a database resource.class
-
Uses of JdbiException in org.jdbi.v3.core.collector
Subclasses of JdbiException in org.jdbi.v3.core.collectorModifier and TypeClassDescriptionclass
Thrown when Jdbi tries to build a Collector, but cannot determine the element type intended for it.class
Thrown when Jdbi tries to produce a result Collector but doesn't have a factory to produce it with. -
Uses of JdbiException in org.jdbi.v3.core.extension
Subclasses of JdbiException in org.jdbi.v3.core.extensionModifier and TypeClassDescriptionclass
Thrown when an extension of an unknown type is created. -
Uses of JdbiException in org.jdbi.v3.core.mapper
Subclasses of JdbiException in org.jdbi.v3.core.mapperModifier and TypeClassDescriptionclass
Thrown when a mapper fails to map the row to a result type.class
Thrown when you attempt to map a type thatJdbi
doesn't have a registered mapper factory for. -
Uses of JdbiException in org.jdbi.v3.core.result
Subclasses of JdbiException in org.jdbi.v3.core.resultModifier and TypeClassDescriptionclass
Thrown when no results were found in a context that requires at least one.class
Wraps exceptions thrown while traversing the JDBC result set.class
Wraps exceptions thrown while producing Java result types. -
Uses of JdbiException in org.jdbi.v3.core.statement
Subclasses of JdbiException in org.jdbi.v3.core.statementModifier and TypeClassDescriptionclass
Superclass for exceptions thrown while trying to execute a statement.class
Thrown whenJdbi
couldn't create a statement.class
Thrown when statement execution fails.class
Thrown whenJdbi
couldn't retrieve metadata from the connection. -
Uses of JdbiException in org.jdbi.v3.core.transaction
Subclasses of JdbiException in org.jdbi.v3.core.transactionModifier and TypeClassDescriptionclass
Thrown when there's a problem manipulating the transaction isolation level.class
Thrown whenJdbi
isn't able to change the transaction isolation level.class
Thrown after a transaction finishes if we can't reset its isolation level. -
Uses of JdbiException in org.jdbi.v3.jpa
Subclasses of JdbiException in org.jdbi.v3.jpaModifier and TypeClassDescriptionclass
Thrown when a JPA getter or setter fails. -
Uses of JdbiException in org.jdbi.v3.postgres
Subclasses of JdbiException in org.jdbi.v3.postgres -
Uses of JdbiException in org.jdbi.v3.sqlobject
Subclasses of JdbiException in org.jdbi.v3.sqlobjectModifier and TypeClassDescriptionclass
Thrown when constructing a SqlObject fails.