org.simpleflatmapper.jdbc.impl.getter.RowIdResultSetGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-jdbc Show documentation
Show all versions of sfm-jdbc Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.simpleflatmapper.jdbc.impl.getter;
import org.simpleflatmapper.reflect.Getter;
import java.sql.ResultSet;
import java.sql.RowId;
import java.sql.SQLException;
public final class RowIdResultSetGetter implements Getter {
private final int column;
public RowIdResultSetGetter(final int column) {
this.column = column;
}
public RowId get(final ResultSet target) throws SQLException {
return target.getRowId(column);
}
@Override
public String toString() {
return "RowIdResultSetGetter{" +
"property=" + column +
'}';
}
}