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?
|
getSourceLocations, getType
getName, getParameterType, getPosition
ParameterMode getMode()
Retrieves the parameter "mode". Only really pertinent in regards to procedure/function calls.
In all other cases the mode would be ParameterMode.IN
boolean isPassNullsEnabled()
How will an unbound value be handled in terms of the JDBC parameter?
true
here indicates that NULL should be passed; false
indicates
that it is ignored.ParameterRegistrationImplementor.isPassNullsEnabled()
void enablePassingNulls(boolean enabled)
Controls how unbound values for this IN/INOUT parameter registration will be handled prior to
execution. For details see ParameterRegistration.enablePassingNulls(boolean)
enabled
- true
indicates that the NULL should be passed; false
indicates it should not.ParameterRegistration.enablePassingNulls(boolean)
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.