com.github.housepower.jdbc.ClickHouseArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
package com.github.housepower.jdbc;
import com.github.housepower.jdbc.wrapper.SQLArray;
import java.sql.SQLException;
public class ClickHouseArray extends SQLArray {
private final Object[] data;
public ClickHouseArray(Object[] data) {
this.data = data;
}
@Override
public void free() throws SQLException {
}
@Override
public Object getArray() throws SQLException {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy