org.duckdb.DuckDBTimestampTZ 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.time.OffsetDateTime;
public class DuckDBTimestampTZ extends DuckDBTimestamp {
public DuckDBTimestampTZ(long timeMicros) {
super(timeMicros);
}
public DuckDBTimestampTZ(OffsetDateTime offsetDateTime) {
super(offsetDateTime);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy