Uses of Package
org.hibernate.procedure
-
Packages that use org.hibernate.procedure Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.procedure Defines support for executing database stored procedures and functions and accessing their outputs.org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions. -
Classes in org.hibernate.procedure used by org.hibernate Class Description ProcedureCall Defines support for executing database stored procedures and functions. -
Classes in org.hibernate.procedure used by org.hibernate.engine.spi Class Description ProcedureCall Defines support for executing database stored procedures and functions. -
Classes in org.hibernate.procedure used by org.hibernate.internal Class Description ProcedureCall Defines support for executing database stored procedures and functions. -
Classes in org.hibernate.procedure used by org.hibernate.procedure Class Description NamedParametersNotSupportedException Thrown to indicate that an attempt was made to register a stored procedure named parameter, but the underlying database reports to not support named parameters.ProcedureCall Defines support for executing database stored procedures and functions.ProcedureOutputs Specialization of theOutputs
contract providing access to the stored procedure's registered output parameters. -
Classes in org.hibernate.procedure used by org.hibernate.procedure.internal Class Description FunctionReturn Describes the function return for ProcedureCalls that represent calls to a function ("{? = call ...}
syntax) rather that a proc ({call ...}
syntax)ProcedureCall Defines support for executing database stored procedures and functions.ProcedureOutputs Specialization of theOutputs
contract providing access to the stored procedure's registered output parameters. -
Classes in org.hibernate.procedure used by org.hibernate.procedure.spi Class Description FunctionReturn Describes the function return for ProcedureCalls that represent calls to a function ("{? = call ...}
syntax) rather that a proc ({call ...}
syntax)ProcedureCall Defines support for executing database stored procedures and functions.