org.duckdb.DuckDBTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duckdb_jdbc Show documentation
Show all versions of duckdb_jdbc Show documentation
A JDBC-Compliant driver for the DuckDB data management system
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