Interface IQueryStatementInput
- Author:
- Christopher Mindus
- Method SummaryModifier and TypeMethodDescription- void- onInputRequested- (NamedParameterStatement namedParameterStatement, InputProps inputProps) Method called when the input to an SQL query statement has been defined and filled with parameter values that are tied to the VirtualSpace.
- Method Details- onInputRequestedvoid onInputRequested- (NamedParameterStatement namedParameterStatement, InputProps inputProps) throws ActionActorException, SQLException Method called when the input to an SQL query statement has been defined and filled with parameter values that are tied to the VirtualSpace.- The method should carry out its work to provide additional variables for the query statement to be complete. The - namedParameterStatementwraps a- PreparedStatementand is used to set named parameters, and also the retrieve the input parameters that has been set.- The variable - sqlInputValuesarray is of the same length as the defined input variables of the SQL statement. These can be retrieved from the- inputPropsusing the method- InputProps.getInputVariables()- sqlInputValuesarray and should be filled as required by this method with a data type object that can be handled for the JDBC statement execution in regards to variable bindings between the Java data types and the JDBC data types.- Parameters:
- namedParameterStatement- The named parameter statement.
- inputProps- The input properties of the database transaction properties.
- Throws:
- ActionActorException- In case of errors in providing the input.
- SQLException- For SQL errors.