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

org.duckdb.DuckDBTime Maven / Gradle / Ivy

The newest version!
package org.duckdb;

import java.sql.Time;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.concurrent.TimeUnit;

public class DuckDBTime extends DuckDBTimestamp {
    public DuckDBTime(Time time) {
        super(TimeUnit.MILLISECONDS.toMicros(time.getTime()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy