Example usage for org.springframework.jdbc.core ParameterDisposer interface-usage

List of usage examples for org.springframework.jdbc.core ParameterDisposer interface-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.core ParameterDisposer interface-usage.

Usage

From source file com.github.ferstl.spring.jdbc.oracle.TestParameterizedPreparedStatementSetter.java

public class TestParameterizedPreparedStatementSetter
        implements ParameterizedPreparedStatementSetter<int[]>, ParameterDisposer {

    private boolean cleanedUp = false;

    @Override

From source file com.github.ferstl.spring.jdbc.oracle.TestBatchPreparedStatementSetter.java

public class TestBatchPreparedStatementSetter implements BatchPreparedStatementSetter, ParameterDisposer {

    private int[] parameters;

    public TestBatchPreparedStatementSetter(int numberOfRows) {
        this.parameters = new int[numberOfRows];

From source file com.github.ferstl.spring.jdbc.oracle.TestInterruptiblePreparedStatementSetter.java

public class TestInterruptiblePreparedStatementSetter extends AbstractInterruptibleBatchPreparedStatementSetter
        implements ParameterDisposer {

    private int[] parameters;

    public TestInterruptiblePreparedStatementSetter(int numberOfRows) {

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

/**
 * Simple adapter for PreparedStatementSetter that applies
 * a given array of arguments.
 *
 * @author Juergen Hoeller
 */

From source file com.wantscart.jade.provider.jdbc.ArgPreparedStatementSetter.java

/**
 * ? {@link org.springframework.jdbc.core.ArgPreparedStatementSetter}
 * ?? public 
 * 
 * @author  [qieqie.wang@gmail.com]
 * @author  [in355hz@gmail.com]

From source file com.laxser.blitz.lama.provider.jdbc.ArgPreparedStatementSetter.java

/**
 * ? {@link org.springframework.jdbc.core.ArgPreparedStatementSetter}
 * ?? public 
 * 
 * @author laxser  Date 2012-3-22 ?3:58:20
@contact [duqifan@gmail.com]

From source file cc.tooyoung.common.db.ArgTypePreparedStatementSetter.java

/**
 * Simple adapter for PreparedStatementSetter that applies
 * given arrays of arguments and JDBC argument types.
 *
 * @author Juergen Hoeller
 */