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

com.jpattern.orm.session.PreparedStatementCreator Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.session;

import java.sql.PreparedStatement;
import java.sql.SQLException;

/**
 * 
 * @author Francesco Cina
 *
 * 02/lug/2011
 * 
 * Set the values of a PreparedStatement to be executed in a batch update.
 */
public interface PreparedStatementCreator  {

	void set(PreparedStatement ps, int i) throws SQLException;
	
	int getBatchSize(); 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy