How to call a stored procedure in spring using SimpleJdbcDaoSupport?
I have a stored procedure in my DB with one input parameter and one output parameter..
How to call this procedure in my java file usin开发者_运维技巧g SimpleJdbcDaoSupport??
I'm a newbie to Spring.. Can someone suggest something for this ??
getJdbcTemplate().call(..)
looks like the method to use.
精彩评论