How to call stored procedure to read return value and out parameter both in Spring?
问题 I have a stored procedure which returns an Integer as well as an Out Parameter which is of type VARCHAR. I am using Spring 2.5.6 and unable to find a way to read the return value as well as Out Parameter at the same time. SimpleJdbcCall.executeFunction(..) have a facility to read the stored procedure return value but no facility for Out Parameter. SimpleJdbcCall.execute(..) can read Out parameters. There are other ways also in Spring to do the above. Am I missing something in Spring which can