Hello,

I was trying to creating a DAO class extending SimpleJdbcDaoSupport which has been deprecating since Spring 3.1. So, had to extend the class JdbcDaoSupport instead. Wanted specifically to use SimpleJdbcCall to call a stored procedure which I cannot. I know I can always use JdbcTemplate.update(). Wondering what would be the best practice to call a stored procedure to return query result and do other database transactions where I am extending JdbcDaoSupport for the DAO class?

Thanks