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

com.github.javaclub.cdl.client.parameter.SetCharacterStream3Handler Maven / Gradle / Ivy

The newest version!
package com.github.javaclub.cdl.client.parameter;

import java.io.Reader;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class SetCharacterStream3Handler implements ParameterHandler {
	public void setParameter(PreparedStatement stmt, Object[] args)
			throws SQLException {
		stmt.setCharacterStream((Integer) args[0], (Reader) args[1]);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy