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

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

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

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

/**
 * 
 * Set the values of a PreparedStatement
 * 
 * @author ufo
 *
 */
public interface PreparedStatementSetter {

	/**
	 * 
	 * @param ps the prepared statement
	 * @throws SQLException
	 */
	void set(PreparedStatement ps) throws SQLException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy