
org.sfm.jdbc.impl.setter.URLPreparedStatementIndexSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm Show documentation
Show all versions of sfm Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.sfm.jdbc.impl.setter;
import java.net.URL;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Types;
public class URLPreparedStatementIndexSetter implements PreparedStatementIndexSetter {
@Override
public void set(PreparedStatement target, URL value, int columnIndex) throws SQLException {
if (value == null) {
target.setNull(columnIndex, Types.DATALINK);
} else {
target.setURL(columnIndex, value);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy