Uses of Package
org.hibernate.procedure
-
Packages that use org.hibernate.procedure Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSession
andSessionFactory
.org.hibernate.engine.spi 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 its outputs.org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi -
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.