Example usage for org.springframework.jdbc.core StatementCreatorUtils cleanupParameters

List of usage examples for org.springframework.jdbc.core StatementCreatorUtils cleanupParameters

Introduction

In this page you can find the example usage for org.springframework.jdbc.core StatementCreatorUtils cleanupParameters.

Prototype

public static void cleanupParameters(@Nullable Collection<?> paramValues) 

Source Link

Document

Clean up all resources held by parameter values which were passed to an execute method.

Usage

From source file:cc.tooyoung.common.db.ArgPreparedStatementSetter.java

public void cleanupParameters() {
    StatementCreatorUtils.cleanupParameters(this.args);
}