public interface EPFireAndForgetPreparedQueryParameterized
A pre-compiled query can only be executed when actual values for all substitution parameters are set.
Modifier and Type | Method and Description |
---|---|
void |
setObject(int parameterIndex,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
void |
setObject(java.lang.String parameterName,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
void setObject(int parameterIndex, java.lang.Object value) throws EPException
parameterIndex
- the first parameter is 1, the second is 2, ...value
- the object containing the input parameter valueEPException
- if the substitution parameter could not be locatedvoid setObject(java.lang.String parameterName, java.lang.Object value) throws EPException
parameterName
- the name of the parametervalue
- the object containing the input parameter valueEPException
- if the substitution parameter could not be set