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

org.kuali.common.impex.data.SqlProducer Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package org.kuali.common.impex.data;

import java.io.BufferedReader;
import java.io.IOException;
import java.util.List;

import org.kuali.common.impex.model.Table;

public interface SqlProducer {

	List getSql(Table table, MpxHeaderData headerData, BufferedReader reader) throws IOException;

	int getBatchDataSizeLimit();

	int getBatchRowCountLimit();

	void setBatchDataSizeLimit(int batchDataSizeLimit);

	void setBatchRowCountLimit(int batchRowCountLimit);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy