接口 ProcedureParameter<T>

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      void enablePassingNulls​(boolean enabled)
      Controls how unbound values for this IN/INOUT parameter registration will be handled prior to execution.
      javax.persistence.ParameterMode getMode()
      Retrieves the parameter "mode".
      boolean isPassNullsEnabled()
      How will an unbound value be handled in terms of the JDBC parameter?
      • 从接口继承的方法 javax.persistence.Parameter

        getName, getParameterType, getPosition
    • 方法详细资料

      • getMode

        javax.persistence.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
        返回:
        The parameter mode.
      • isPassNullsEnabled

        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()