Package org.springframework.jdbc.core
Interface ParameterDisposer
- All Known Implementing Classes:
ArgumentPreparedStatementSetter,ArgumentTypePreparedStatementSetter
public interface ParameterDisposer
Interface to be implemented by objects that can close resources allocated by parameters likeSqlLobValueobjects.Typically implemented by
PreparedStatementCreatorsandPreparedStatementSettersthat supportDisposableSqlTypeValueobjects (e.g.SqlLobValue) as parameters.- Since:
- 1.1
- Author:
- Thomas Risberg, Juergen Hoeller
- See Also:
PreparedStatementCreator,PreparedStatementSetter,DisposableSqlTypeValue,SqlLobValue
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleanupParameters()Close the resources allocated by parameters that the implementing object holds, for example in case of a DisposableSqlTypeValue (like a SqlLobValue).
Method Detail
cleanupParameters
void cleanupParameters()
Close the resources allocated by parameters that the implementing object holds, for example in case of a DisposableSqlTypeValue (like a SqlLobValue).