package io.dropwizard.jdbi.args;
import org.skife.jdbi.v2.StatementContext;
import org.skife.jdbi.v2.tweak.ResultColumnMapper;
import javax.annotation.Nullable;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.time.LocalDateTime;
A ResultColumnMapper
to map LocalDateTime
objects. /**
* A {@link ResultColumnMapper} to map {@link LocalDateTime} objects.
*/
public class LocalDateTimeMapper implements ResultColumnMapper<LocalDateTime> {
@Override
@Nullable
public LocalDateTime mapColumn(ResultSet r, String columnLabel, StatementContext ctx) throws SQLException {
final Timestamp timestamp = r.getTimestamp(columnLabel);
if (timestamp == null) {
return null;
}
return timestamp.toLocalDateTime();
}
@Override
@Nullable
public LocalDateTime mapColumn(ResultSet r, int columnNumber, StatementContext ctx) throws SQLException {
final Timestamp timestamp = r.getTimestamp(columnNumber);
if (timestamp == null) {
return null;
}
return timestamp.toLocalDateTime();
}
}