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

pm.pride.PreparedOperationI Maven / Gradle / Ivy

package pm.pride;

import java.lang.reflect.Method;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public interface PreparedOperationI {
	public Database getDatabase();
	public PreparedStatement getStatement();
	public void setBindParameter(Method setter, int parameterIndex, Object preparedValue) throws ReflectiveOperationException;
	public void setBindParameterNull( int parameterIndex, int columnType) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy