looks like jdbc template is not passing params to hana db while calling stored procedures. As per our analysis spring jdbc implementation is not identifying procedure params from metadata. .We are using standard code for calling proc.
simpleJdbcCall = new SimpleJdbcCall(datasource).withSchemaName(getSchemaString())
.withProcedureName(name);
results = simpleJdbcCall.execute(params);
We tried searching net but coudnt find satisfactorily solution i have also tried setting paramerter explicity
simpleJdbcCall = new SimpleJdbcCall(datasource).withSchemaName(getSchemaString())
.withProcedureName(name);
SqlParameterSource in = new MapSqlParameterSource().addValues(params);
results = simpleJdbcCall.execute(in);
here params is hashmap. Still issue remain same
From the javadoc (emphasis is mine):
I would say you need to use
SimpleJdbcCall#declareParameters(SqlParameter...)