org.duckdb.DuckDBVector 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
package org.duckdb;
import java.nio.ByteBuffer;
public class DuckDBVector {
public DuckDBVector(String duckdb_type, int length, boolean[] nullmask) {
super();
this.duckdb_type = duckdb_type;
this.length = length;
this.nullmask = nullmask;
}
protected String duckdb_type;
protected int length;
protected boolean[] nullmask;
protected ByteBuffer constlen_data = null;
protected Object[] varlen_data = null;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy