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

io.dropwizard.java8.jdbi.args.LocalDateTimeMapper Maven / Gradle / Ivy

There is a newer version: 0.9.0-1
Show newest version
package io.dropwizard.java8.jdbi.args;

import org.skife.jdbi.v2.util.TypedMapper;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.time.LocalDateTime;

/**
 * A {@link TypedMapper} to map {@link LocalDateTime} objects.
 */
public class LocalDateTimeMapper extends TypedMapper {

    @Override
    protected LocalDateTime extractByName(final ResultSet r, final String name) throws SQLException {
        final Timestamp timestamp = r.getTimestamp(name);
        if (timestamp == null) {
            return null;
        }
        return timestamp.toLocalDateTime();
    }

    @Override
    protected LocalDateTime extractByIndex(final ResultSet r, final int index) throws SQLException {
        final Timestamp timestamp = r.getTimestamp(index);
        if (timestamp == null) {
            return null;
        }
        return timestamp.toLocalDateTime();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy