|
From: <tri...@tr...> - 2003-09-05 01:38:52
|
I have started to work on implementing a feature for returning resultsets from the StoredProcedure class. The first step is to convert StoredProcedure to use JdbcTemplate so I can reuse some of the resultset extraction code. Before doing this, I moved the OutputParameter out of the StoredProcedure class to its own file org.springframework.jdbc.core.SqlOutParameter. So, anybody currently using the StoredProcedure class will have to add this import and also change the name for the OUT parameter declarations to SqlOutParameter. This new name fits better with the jdbc naming as in CallableStatement.registerOutParameter(). I have not committed anything yet, I just wanted to alert you that there are some minor things that you will have to change if you use the StoredProcedure class, and also give you a chance to voice any concerns regarding these changes. I'll keep you posted. Thomas |