Internal Website Search

21-30 of 200 resultsRefresh

Query.setParameter(name,value,temporalType) - JPA Method

;   Calendar  value ,     TemporalType  temporalType ) Bind an instance of java.util.Calendar to a named parameter. Parameters: name - parameter name value - parameter value temporalType - temporal type Return: the same query instance Throws: IllegalArgumentException

Query.setParameter(name,value) - JPA Method

JPA Method in javax.persistence.Query Query setParameter (   String name,    Object  value ) Bind an argument value to a named parameter. Parameters: name - parameter name value - parameter value Return: the same query instance Throws: IllegalArgumentException

Query.setParameter(position,value,temporalType) - JPA Method

;   Date  value ,     TemporalType  temporalType ) Bind an instance of java.util.Date to a positional parameter. Parameters: position - position value - parameter value ... - if position does not correspond to a positional parameter of the query or if the value argument is of incorrect type Since: JPA 1.0

Query.setParameter(position,value,temporalType) - JPA Method

;   Calendar  value ,     TemporalType  temporalType ) Bind an instance of java.util.Calendar to a positional parameter. Parameters: position - position value - parameter value temporalType - temporal type Return: the same query instance Throws: IllegalArgumentException

Query.setParameter(name,value,temporalType) - JPA Method

;   Date  value ,     TemporalType  temporalType ) Bind an instance of java.util.Date to a named parameter. Parameters: name - parameter name value - parameter value ... - if the parameter name does not correspond to a parameter of the query or if the value argument is of incorrect type Since: JPA 1.0

Query.setParameter(position,value) - JPA Method

JPA Method in javax.persistence.Query Query setParameter (   int position,    Object  value ) Bind an argument value to a positional parameter. Parameters: position - position value - parameter value Return: the same query instance Throws: IllegalArgumentException

Query.setParameter(param,value) - JPA Method

JPA Method in javax.persistence.Query Query setParameter (    Parameter  param,    T  value ) Bind the value of a Parameter object. Parameters: param - parameter object value - parameter value Return: the same query instance Throws: IllegalArgumentException

TypedQuery.setParameter(name,value) - JPA Method

JPA Method in javax.persistence.TypedQuery TypedQuery setParameter (   String name,    Object  value ) Bind an argument value to a named parameter. Parameters: name - parameter name value - parameter value Return: the same query instance Throws

TypedQuery.setParameter(param,value) - JPA Method

JPA Method in javax.persistence.TypedQuery TypedQuery setParameter (    Parameter  param,    T  value ) Bind the value of a Parameter object. Parameters: param - parameter object value - parameter value Return: the same query instance Throws

javax.persistence.ForeignKey.value

JPA Annotation Attribute in javax.persistence.ForeignKey ConstraintMode value default CONSTRAINT ... generation is in effect. A value of CONSTRAINT will cause the persistence provider to generate a foreign key ... ) to which the foreign key annotation is applied. A value of NO_CONSTRAINT will result in no constraint