-469 The stored procedure definition includes one or more OUTPUT parameters for which no host variable was passed.
Explanation
The CALL statement did not include a host variable for one of the stored procedure OUTPUT or OUTIN parameters. Every output parameter in a stored procedure definition must have a host variable passed in its associated CALL statement.
Response
Correct the application program.