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

org.onetwo.dbm.jdbc.spi.JdbcStatementParameterSetter Maven / Gradle / Ivy

The newest version!
package org.onetwo.dbm.jdbc.spi;

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

import org.springframework.jdbc.core.SqlParameter;

public interface JdbcStatementParameterSetter {
	
	public void setParameterValue(PreparedStatement psToUse, int paramIndex, SqlParameter declaredParameter, Object inValue) throws SQLException;
	
	public void setParameterValue(PreparedStatement ps, int parameterPosition, Object argValue) throws SQLException;
	
	public void setParameterValue(PreparedStatement ps, int parameterPosition, int argType, Object argValue) throws SQLException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy