All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.simpleflatmapper.jdbc.impl.BatchQueryExecutor Maven / Gradle / Ivy

package org.simpleflatmapper.jdbc.impl;

import org.simpleflatmapper.util.CheckedConsumer;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Collection;

public interface BatchQueryExecutor {
    void insert(Connection connection, Collection values, CheckedConsumer postExecute) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy