站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 2.0.5 API 文档英文版

ParameterDisposer (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版

The Spring Framework

org.springframework.jdbc.core
Interface ParameterDisposer


public interface ParameterDisposer

Interface to be implemented by objects that can close resources allocated by parameters like SqlLobValues.

Typically implemented by PreparedStatementCreators and PreparedStatementSetters that support DisposableSqlTypeValue objects (e.g. SqlLobValue) as parameters.

Since:
1.1
Author:
Thomas Risberg, Juergen Hoeller
See Also:
PreparedStatementCreator, PreparedStatementSetter, DisposableSqlTypeValue, SqlLobValue

Method Summary
 void cleanupParameters()
          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).

See Also:
DisposableSqlTypeValue.cleanup(), SqlLobValue.cleanup()

The Spring Framework

Copyright © 2002-2007 The Spring Framework.