public interface ProcedureParameter<T> extends QueryParameter<T>
Modifier and Type | Method and Description |
---|---|
void |
enablePassingNulls(boolean enabled)
Controls how unbound values for this IN/INOUT parameter registration will be handled prior to
execution.
|
ParameterMode |
getMode()
Retrieves the parameter "mode".
|
boolean |
isPassNullsEnabled()
How will an unbound value be handled in terms of the JDBC parameter?
|
getHibernateType, getSourceLocations
getName, getParameterType, getPosition
ParameterMode getMode()
ParameterMode.IN
boolean isPassNullsEnabled()
true
here indicates that NULL should be passed; false
indicates
that it is ignored.ParameterRegistrationImplementor.isPassNullsEnabled()
void enablePassingNulls(boolean enabled)
ParameterRegistration.enablePassingNulls(boolean)
enabled
- true
indicates that the NULL should be passed; false
indicates it should not.ParameterRegistration.enablePassingNulls(boolean)
Copyright © 2019 JBoss by Red Hat. All rights reserved.