A SimpleJdbcCall can be instantiated using a dataSource in the constructor
SimpleJdbcCall simpleJdbcCall = new SimpleJdbcCall(DataSource datasource)
The example of usage from the Spring Framework Documentation also instantiates a new SimpleJdbcTemplate with the same datasource.
I don't see anywhere where the template is used. Does the SimpleJdbcCall work independently of the template?


Reply With Quote