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

org.sfm.jdbc.impl.getter.SQLXMLResultSetGetter Maven / Gradle / Ivy

package org.sfm.jdbc.impl.getter;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLXML;

import org.sfm.reflect.Getter;

public final class SQLXMLResultSetGetter implements Getter {
	private final int column;
	
	public SQLXMLResultSetGetter(final int column) {
		this.column = column;
	}

	public SQLXML get(final ResultSet target) throws SQLException {
		return target.getSQLXML(column);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy