com.github.housepower.jdbc.wrapper.SQLStruct 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.wrapper;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.sql.Struct;
import java.util.Map;
public class SQLStruct implements Struct {
@Override
public String getSQLTypeName() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public Object[] getAttributes() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public Object[] getAttributes(Map> map) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy