Uses of Interface
javax.persistence.StoredProcedureQuery
-
Uses of StoredProcedureQuery in javax.persistence
Methods in javax.persistence that return StoredProcedureQueryModifier and TypeMethodDescriptionStoredProcedureQuery.registerStoredProcedureParameter(int position, Class type, ParameterMode mode) Register a positional parameter.StoredProcedureQuery.registerStoredProcedureParameter(String parameterName, Class type, ParameterMode mode) Register a named parameter.StoredProcedureQuery.setFlushMode(FlushModeType flushMode) Set the flush mode type to be used for the query execution.Set a query property or hint.StoredProcedureQuery.setParameter(int position, Object value) Bind an argument to a positional parameter.StoredProcedureQuery.setParameter(int position, Calendar value, TemporalType temporalType) Bind an instance of java.util.Calendar to a positional parameter.StoredProcedureQuery.setParameter(int position, Date value, TemporalType temporalType) Bind an instance of java.util.Date to a positional parameter.StoredProcedureQuery.setParameter(String name, Object value) Bind an argument to a named parameter.StoredProcedureQuery.setParameter(String name, Calendar value, TemporalType temporalType) Bind an instance of java.util.Calendar to a named parameter.StoredProcedureQuery.setParameter(String name, Date value, TemporalType temporalType) Bind an instance of java.util.Date to a named parameter.StoredProcedureQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Bind an instance of java.util.Calendar to a Parameter object.StoredProcedureQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Bind an instance of java.util.Date to a Parameter object.StoredProcedureQuery.setParameter(Parameter<T> param, T value) Bind the value of a Parameter object.