com.mageddo.common.jdbc.StreamingStatementCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Some commons utilities on mageddo environment
package com.mageddo.common.jdbc;
import org.springframework.jdbc.core.PreparedStatementCreator;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import static java.sql.ResultSet.CONCUR_READ_ONLY;
import static java.sql.ResultSet.TYPE_FORWARD_ONLY;
public class StreamingStatementCreator implements PreparedStatementCreator {
private final String sql;
private final int fetchSize;
public StreamingStatementCreator(String sql) {
this.sql = sql;
this.fetchSize = 1000;
}
public StreamingStatementCreator(String sql, int fetchSize) {
this.sql = sql;
this.fetchSize = fetchSize;
}
@Override
public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
final PreparedStatement statement = connection.prepareStatement(sql, TYPE_FORWARD_ONLY, CONCUR_READ_ONLY);
statement.setFetchSize(fetchSize);
return statement;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy