Uses of Class
org.jdbi.v3.core.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
Modifier and TypeClassDescriptionclass
Thrown when an exception occurs while attempting to close a database resource.class
-
Uses of JdbiException in org.jdbi.v3.core.collector
Modifier 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
Modifier and TypeClassDescriptionfinal class
Thrown when noExtensionFactory
accepts a given extension type.final class
Marks that a specific extension could not be created. -
Uses of JdbiException in org.jdbi.v3.core.mapper
Modifier 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
Modifier 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
Modifier 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
Modifier 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
Modifier and TypeClassDescriptionclass
Thrown when a JPA getter or setter fails. -
Uses of JdbiException in org.jdbi.v3.postgres
-
Uses of JdbiException in org.jdbi.v3.sqlobject
Modifier and TypeClassDescriptionclass
Thrown when constructing a SqlObject fails.