接口 StoredProcedureQueryParameterRegistration<T>
-
- 所有超级接口:
javax.persistence.Parameter<T>,ParameterRegistration<T>
public interface StoredProcedureQueryParameterRegistration<T> extends ParameterRegistration<T>
ParameterRegistration extension specifically for stored procedure parameters exposing some functionality of Hibernate's nativeParameterRegistrationcontract- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidenablePassingNulls(boolean enabled)Controls how unbound values for this IN/INOUT parameter registration will be handled prior to execution.booleanisPassNullsEnabled()How will an unbound value be handled in terms of the JDBC parameter?-
从接口继承的方法 org.hibernate.jpa.spi.ParameterRegistration
bindValue, bindValue, getBind, getMode, getQuery, isBindable, isJpaPositionalParameter
-
-
-
-
方法详细资料
-
isPassNullsEnabled
boolean isPassNullsEnabled()
How will an unbound value be handled in terms of the JDBC parameter?- 返回:
truehere indicates that NULL should be passed;falseindicates that it is ignored.- 另请参阅:
ParameterRegistrationImplementor.isPassNullsEnabled()
-
enablePassingNulls
void enablePassingNulls(boolean enabled)
Controls how unbound values for this IN/INOUT parameter registration will be handled prior to execution. For details seeParameterRegistration.enablePassingNulls(boolean)- 参数:
enabled-trueindicates that the NULL should be passed;falseindicates it should not.- 另请参阅:
ParameterRegistration.enablePassingNulls(boolean)
-
-