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

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

package org.sfm.jdbc.impl.getter;

import java.math.BigInteger;
import java.sql.ResultSet;

import org.sfm.reflect.Getter;

public final class BigIntegerResultSetGetter implements Getter {

	private final int column;

	public BigIntegerResultSetGetter(final int column) {
		this.column = column;
	}

	@Override
	public BigInteger get(final ResultSet target) throws Exception {
		return new BigInteger(target.getString(column));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy