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

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

There is a newer version: 2.3.9
Show newest version
package com.github.javaclub.cdl.client.parameter;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy