Uses of Class
org.jdbi.v3.core.JdbiException
-
Packages that use JdbiException Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.collector Thecollectorpackage reduces the mapped rows of the result set into a Stream Collector to produce the final aggregated result.org.jdbi.v3.core.extension Theextensionclasses allow you to extendJdbi's functionality by declaring interface types that may attach toHandleinstances.org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.core.transaction Thetransactionpackage implements the strategyJdbiuses to open and close transactions.org.jdbi.v3.jpa Thejpaplugin provides minimal support for discovering JPA annotations likeColumn.org.jdbi.v3.postgres Thepostgresplugin provides improved support forjava.time,hstore,uuid, andenumtypes when configured with a recent Postgres database server.org.jdbi.v3.sqlobject SQL Objects -
-
Uses of JdbiException in org.jdbi.v3.core
Subclasses of JdbiException in org.jdbi.v3.core Modifier and Type Class Description classCloseExceptionThrown when an exception occurs while attempting to close a database resource.classConnectionException -
Uses of JdbiException in org.jdbi.v3.core.collector
Subclasses of JdbiException in org.jdbi.v3.core.collector Modifier and Type Class Description classElementTypeNotFoundExceptionThrown when Jdbi tries to build a Collector, but cannot determine the element type intended for it.classNoSuchCollectorExceptionThrown 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.extension Modifier and Type Class Description classNoSuchExtensionExceptionThrown when noExtensionFactoryaccepts a given extension type.classUnableToCreateExtensionExceptionMarks that a specific extension could not be created. -
Uses of JdbiException in org.jdbi.v3.core.mapper
Subclasses of JdbiException in org.jdbi.v3.core.mapper Modifier and Type Class Description classMappingExceptionThrown when a mapper fails to map the row to a result type.classNoSuchMapperExceptionThrown when you attempt to map a type thatJdbidoesn't have a registered mapper factory for. -
Uses of JdbiException in org.jdbi.v3.core.result
Subclasses of JdbiException in org.jdbi.v3.core.result Modifier and Type Class Description classNoResultsExceptionThrown when no results were found in a context that requires at least one.classResultSetExceptionWraps exceptions thrown while traversing the JDBC result set.classUnableToProduceResultExceptionWraps exceptions thrown while producing Java result types. -
Uses of JdbiException in org.jdbi.v3.core.statement
Subclasses of JdbiException in org.jdbi.v3.core.statement Modifier and Type Class Description classStatementExceptionSuperclass for exceptions thrown while trying to execute a statement.classUnableToCreateStatementExceptionThrown whenJdbicouldn't create a statement.classUnableToExecuteStatementExceptionThrown when statement execution fails.classUnableToRetrieveMetaDataExceptionThrown whenJdbicouldn't retrieve metadata from the connection. -
Uses of JdbiException in org.jdbi.v3.core.transaction
Subclasses of JdbiException in org.jdbi.v3.core.transaction Modifier and Type Class Description classTransactionExceptionThrown when there's a problem manipulating the transaction isolation level.classUnableToManipulateTransactionIsolationLevelExceptionThrown whenJdbiisn't able to change the transaction isolation level.classUnableToRestoreAutoCommitStateExceptionThrown 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.jpa Modifier and Type Class Description classEntityMemberAccessExceptionThrown when a JPA getter or setter fails. -
Uses of JdbiException in org.jdbi.v3.postgres
Subclasses of JdbiException in org.jdbi.v3.postgres Modifier and Type Class Description classLargeObjectException -
Uses of JdbiException in org.jdbi.v3.sqlobject
Subclasses of JdbiException in org.jdbi.v3.sqlobject Modifier and Type Class Description classUnableToCreateSqlObjectExceptionThrown when constructing a SqlObject fails.
-