As per https://stackoverflow.com/questions/13162043/spring-simplejdbccall-default-optional-arguments there seems to be no straightforward way to call stored procedure with optional parameters.
I would expect there to be something like SqlDefaultParamaterValue for explicit binding to default value (in SQL Server this would generate DEFAULT).
Additionally SimpleJdbcCall should do it automatically for missing parameters based on metadata (COLUMN_DEF)
As per https://stackoverflow.com/questions/13162043/spring-simplejdbccall-default-optional-arguments there seems to be no straightforward way to call stored procedure with optional parameters.
I would expect there to be something like
SqlDefaultParamaterValuefor explicit binding to default value (in SQL Server this would generateDEFAULT).Additionally
SimpleJdbcCallshould do it automatically for missing parameters based on metadata (COLUMN_DEF)