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

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

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

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

public class SetNStringHandler implements ParameterHandler{

	@Override
	public void setParameter(PreparedStatement stmt, Object[] args) throws SQLException {
		stmt.setNString((Integer) args[0], (String) args[1]);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy